I want to repeat columns in a rml report using the method 'repeatIn' inside a tag -td- but didn't have success. It is my code:
<*blockTable style="row" colWidths="10cm,3cm" >
<*tr>
<td><para style="default_bold">[[ the_data['shop']['name'] or '' ]]</para> </td>
<td> <section>
<para>[[ repeatIn(the_data['shop']['products'], 'product') ]]</para>
<para style="default_right">[[ product['amount'] and formatLang(product['amount'], digits=2) or '0' ]]</para>
</section> </td>
</tr> </blockTable>
Where: the_data['shop']['products'] is a list of amounts of products and i need to show this in columns, but when I execute this code, it repeat the rows,not the columns.
I need some help please.
Note: I use '*' in some tags for can write this post