Does anyone have a way to group table rows togethe...
# advancedpdf
m
Does anyone have a way to group table rows together? I want to prevent rows from splitting when there is a page break. I have tried <tbody> but Netsuite doesnt validate it. Below are the rows i want to group together. (Full description is massive)
Copy code
<tr>
	<td align="center" colspan="3" line-height="150%" style="height: 36px;">${item.quantity}</td>
	<td colspan="12" style="height: 36px;"><span style="font-weight: bold; line-height: 150%; color: #333333;">${item.item}</span></td>
	<td align="right" colspan="5" style="height: 36px;">${item.custcolcontractnumber}</td>
	<td align="right" colspan="4" style="height: 36px;">${item.rate}</td>
	<td align="right" colspan="4" style="height: 36px;">${item.amount}</td>
	</tr>
	<tr style="border-bottom:1px solid black">
	<td align="right" colspan="25" style="height: 36px;">${item.custcol_item_full_description}</td>
	</tr>
m
Thank you for the suggestion! I tried that as well, but it caused the first page to be blank and all items on the second page haha I ended up making each item its own table together and that worked out for me.
👍 1