How to show Formidable Repeater Fields per row in a table?

14 August, 2024 17:36:50
dswd11.amaris
Topics: 1
Messages: 2
Hi, How to show Formidable Repeater Fields per row in a table? My data is in a foreach loop, but all the entries are displayed on a single row/cell. please see image for the output.

<table id="travel" border="1" cellpadding="1">
<thead>
<tr style="text-align:center; font-weight:bold">
<th>NAME</th>
<th>DESIGNATION</th>
<th>OFFICIAL STATION</th>
<th>DATE/S</th>
<th>DESTINATION/S</th>
</tr>
</thead>
{foreach [541] }
<tr>

<td> [543]</td>
<td> [544]</td>
<td> [545]</td>
<td> [551]</td>
<td> [550]</td>

</tr>
{/foreach}
</table>
14 August, 2024 18:25:31
dswd11.amaris
Topics: 1
Messages: 2
Solved. Sorry the correct syntax for the loop is this.

[foreach 100]
<tr>
<td>[101]</td>
<td>[102]</td>
<td>[103]</td>
</tr>
[/foreach 100]