Breaks the table format when page break happens
Happens to us also when table ate logner.
@meetmaykel honestly it has happened twice and I just decided to do a little smaller text font
I know it is not ideal but since tables are fine.
If you build your table manually, you can use JS to split your table into chunks -essentially smaller tables so that they can split every x cells. I had to do that in Podio.
Also, I think you can add some CSS to control the page breaks.
tr { page-break-inside: avoid; }
5 Likes
Our workaround is, that every line of the table is a table itself. Not very efficient, but working
So similar to @1F2Ns … who’s idea seems to be a better tradeoff.