Report not complete when using print() on form view

I’m trying to use print() with a form view. The form is quite complex. I’m using fieldset’s, layouts and most form controls in the form. When I print the form, the last portion of the form is always cut off. I can’t seem to figure out why. Is there any reason for this behavior? Does print() have limitations?

Hello @stretch98 ,
The only part that will be printed out is the visible part, the only exception is when you print a **data-**component exclusively.
Unfortunately, it is impossible to print the form with all the content, as the only part that will get printed is the one that is currently visible, as mentioned above.