Hello @Shaun11,
Could you please add the following to your CSS in your Reactive app and let us know if that helps?
/* CSS for Reactive Printing */
@media all {
.page-break {
display: none;
}
}
@media print {
html, body {
height: initial !important;
overflow: initial !important;
-webkit-print-color-adjust: exact;
}
}
@media print {
.page-break {
margin-top: 1rem;
display: block;
page-break-before: auto;
}
}
@page {
size: auto;
margin: 20mm;
}
The above code is a suggestion by Josh Herron for Ultimate PDF to effectively export all pages in a Reactive web app. The original post is -> https://www.outsystems.com/forums/discussion/65541/ultimatepdf-with-reactive-web-only-getting-the-first-page-of-content/
Hope this solves your issue,
Regards,
AJ