09-11-2017 10:14 AM
Hello Guys,
Is it possible to insert at report a Page break?
I want to show at report 2 different tables, but I need them in 2 differents pages. I can't use Width and Height becouse I dont know how many lines the table will show becouse it depends the simulation.
Thanks.
Solved! Go to Solution.
09-11-2017 11:56 AM
you can include HTML tags and css formats to the (HTML) report.
e.g. page breake before the second table
<div style="page-break-before: always">
<!-- add your second table here -->
</div>
Steffen Bangsow freelance simulation specialist web: www.bangsow.eu mail: steffen@bangsow.net | ![]() |
09-12-2017 12:19 PM
Thank you Steffen