Anyone got any clever ideas for displaying a large...
# advancedpdf
p
Anyone got any clever ideas for displaying a large number of serial numbers (500+) on a delivery note. Currently splitting the
inventorydetail
on
<br />
and then
,
to isolate the serial number from the bin number, then listing the result. Currently at 5 to a line (can't fit any more) which has been working fine up until now but now have a situation where this is running over the footer and over the end of the page rather than flowing to the next page. I've already checked
page-break-inside
isn't the issue. I know I could bring a new
<tr>
structure inside my list and that would flow over page breaks correctly but then I'd be back to having a single serial no. per line and pages on pages of numbers which I would really like to avoid.
👀 1