How to; set a pagebreak on a list of object on a document template where the data is shown in a dataview

1
I tried to use a templategrid but this gives an error. i want to be able to print multiple record shown as a dataview including a pagebreak after every record.
asked
1 answers
4

Use template grid. Create a table with 1 cell inside the template grid. Set the height of this cell in the custum style tab to the height of the page. Example:

height: 900pt;

Or maybe a better solution: Set this row in the custom style of the table inside the template grid:

break-after: page;

answered