Hello! We have a nested table in PDF that needs to...
# advancedpdf
j
Hello! We have a nested table in PDF that needs to go through the next pages. We're trying to do it via page-break but unfortunately the table is not adding the page-breaks in the table. Any idea on this?
Here's the design where the nested table is inside a single row. I know adding multiple rows would break the page, but the issue is we don't know how long the nested table would be, so there's still a risk to bleed off the page.
Copy code
table 
    tr
        td
            table 1
        td
            table 2
        td
            table 3
s
in your structure above, the main table will not break inside a td You will need to work out the logic to not have your nested table... Similar to breaking a looooong description by paragraph into table rows. See my post here: https://netsuiteprofessionals.slack.com/archives/C466X49JB/p1709683145171069?thread_ts=1709653141.556289&cid=C466X49JB
You're going to have to get very creative
j
The only issue if I have it on multiple table rows is that it wouldn't guarantee that the nested table data could fit in each main table's row. Hmmmm
s
There is no workaround for this. The main table will never break inside a TD
1
j
Thanks for confirming! 🙂