Hello,
Need to implement page break on UI screen (preview pdf). Can anyone suggest how to implement page break after a table widget in traditional.
Hi Pujitha,
You can try with this below CSS,
Keep this CSS in your Screen/ webblock where your print content is present,
@media print { .pagebreakelement {page-break-after: always; }
pagebreakelement is the class, you can apply on the container after which you want to use page break.
Reference link: https://www.w3schools.com/csSref/pr_print_pageba.asp
Are you using any component or directly printing with javascript code?
You can use NewLine() action in expression to make a line break.
Hope this helps,
Regards,
Shoeb