I am doing a dynamically generated report in python using Reportlab Platypus.
I have several tables that are generated, most have just 10 to 20 rows. Now they are automatically split at the end of my page, but I would prefer that they stay together on the same page.
I tried setting splitByRow to False on Table, but this causes a "Not implemented" error.
Also, I am not allowed to make any changes to the python reportLab files, although I can see the code. Maybe I can subclass the table and disable the split somehow?
What is the easiest way to disable the current split?
source share