Forums

email report don't display array

alfredopacino 04 Sep, 2012
i have this particular table in my form

<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
Max_admin 05 Sep, 2012
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
Max, ChronoForms developer
ChronoMyAdmin: Database administration within Joomla, no phpMyAdmin needed.
ChronoMails simplifies Joomla email: newsletters, logging, and custom templates.
This topic is locked and no more replies can be posted.