Hi,
I would want to group rows so that if 1 of the rows has to move to the next page the rest of the rows within that group also move to the next page. I've got the following table structue:
[code]
<table>
{REPEATABLE REGION FOR EVERY PRODUCT}
<tr>
<td>
product information
</td>
</tr>
<tr>
<td>
product options
</td>
</tr>
<tr>
<td>
product prices
</td>
</tr>
{/ REPEATABLE REGION FOR EVERY PRODUCT}
[/code]
</table>
Is it possible to group the Rows? I tried putting de <nobreak> tags around the rows but this won't work. The reason i want this, is that for every product all the information is on the same page. So if it doesn't fit on a page anymore ALL the rows for that specific product should move to the next page:
This is what I would want:
[code]
<table>
{REPEATABLE REGION FOR EVERY PRODUCT}
<nobreak>
<tr>
<td>
product information
</td>
</tr>
<tr>
<td>
product options
</td>
</tr>
<tr>
<td>
product prices
</td>
</tr>
</nobreak>
{/ REPEATABLE REGION FOR EVERY PRODUCT}
</table>
[/code]
Is such a thing possible and how can I achieve this?
