I have a Rich Text Field inside NetSuite with multiple images. Unfortunately, the images that don't fit on the first page/same page, are NOT getting pushed down to a second page after generating the Advanced PDF. Instead, BFO just cuts-off the image at page break. Any suggestions on how I can address this issue? It was recommended that I put my data into tables, as well as use page-break-inside
, but the same image still cuts-off at the page break.
Advanced PDF:
<table page-break-inside="auto">
<tr>
<td>${result.custevent_images?replace('&', '&')?replace('">', '"/>')}</td>
</tr>
</table>
NetSuite Rich Text Field:
<table page-break-inside="auto">
<tr>
<td>
<img1...>
</td>
</tr>
<tr>
<td>
<img2...>
</td>
</tr>
<tr>
<td>
<img3...>
</td>
</tr>
</table>