Support

Account

Home Forums Add-ons Repeater Field Splitting fields into table rows Reply To: Splitting fields into table rows

  • Hi James

    The code above does work but it doesn’t achieve what I need. I’ll try and explain again.

    Based on the code above I need the output to be:

    <table>
    <tr>
     // All $field1 and $field2 fields in this row each wrapped in <td> tags
      <td>This is field 1 text</td>
      <td rowspan="2">This is field 2 text</td>
      <td>This is another loop of field 1 text</td>
      <td rowspan="2">This is another loop of field 2 text</td>
     </tr>
     
    <tr>
     // All $field 3 in this row wrapped in <td> tags
     <td>This is field 3 text</td>
     <td>This is another loop of field 3 text</td>
    </tr>
    </table>

    I basically need it to loop through the all $field1 and $field2 fields and then start looping through all the $field3 ones. Hopefully that helps explain things a little better?

    Many thanks