Hi everyone, I’m having an issue with Survey123 Connect. I’ve created a form that includes a summary of repeated entries (basically a repeat summary). It works fine in the design phase, but when I try to view the form on the web, I get an error and the summary doesn’t display as it should. I’ve checked the configuration but haven’t been able to figure out the cause. I’d really appreciate any help or ideas from anyone who has encountered this before or knows how to solve it.
Web appears to not support your <thead> tag. The web designer support the following under the HTML formatting on the page:
https://doc.arcgis.com/en/survey123/browser/create-surveys/styleyourform.htm
You should just be able to get rid of the "<thead>" tags.
<h3>Totales — Cajas: ${total_cajas} | Unidades: ${total_unidades}</h3>
<table border="1" cellpadding="4" cellspacing="0">
<tr>
<th>Producto</th>
<th>Cajas</th>
<th>Unidades</th>
</tr>
<tbody>
${rows_html}
</tbody>
</table>