i have this particular table in my form
this is the generated email template part
all work fine in db save action (with a personal array handler) but in the email report those data don't show
<table width="100%">
<td>Name</td>
<td>Surname</td>
<td>C.F.</td>
</tr>
<tr>
<td><input type="text" name="cda1[0]" /></td>
<td><input type="text" name="cda1[1]" /></td>
<td><input type="text" name="cda1[2]" /></td>
</tr>
<tr>
<td><input type="text" name="cda2[0]" /></td>
<td><input type="text" name="cda2[1]" /></td>
<td><input type="text" name="cda2[2]" /></td>
</tr>
</table>
this is the generated email template part
<table border="1" width="100%">
<td>Name</td>
<td>Surname</td>
<td>C.F.</td>
</tr>
<tr>
<td>{cda1.0}</td>
<td>{cda1.1}</td>
<td>{cda1.2}</td>
</tr>
<tr>
<td>{cda2.0}</td>
<td>{cda2.1}</td>
<td>{cda2.2}</td>
</tr>
</table>all work fine in db save action (with a personal array handler) but in the email report those data don't show
Hmmm, the "Handle arrays" may be processing this field as well, you will have to configure the list of fields to be processed in the handle arrays and ignore this one of course.
Regards,
Max
Regards,
Max
This topic is locked and no more replies can be posted.
