325
Views
3
Comments
Solved
Print a list or a form
Question


Hello,

Is it possible to print the result of a listing?

Thanks

2018-09-19 00-51-43
Brian Gall
Solution

Hi Carlos,

Yes you can print any web screen with standard Javascript. Just configure a link to execute the "window.print();" Javascript function.

You may wish to customize the layout, hide certain elements, change fonts, etc. for the printed content. For this just use the CSS "print" media tag:

@media print {
    /* Print CSS rules go here */
}

If you want a PDF generated from your web screen, look into the Html2PdfConverter forge component:
https://www.outsystems.com/forge/component/209/html2pdfconverter/?Unfollow=False

Let me know if you have any questions!

UserImage.jpg
Carlos Messias

Brian Gall wrote:

Hi Carlos,

Yes you can print any web screen with standard Javascript. Just configure a link to execute the "window.print();" Javascript function.

You may wish to customize the layout, hide certain elements, change fonts, etc. for the printed content. For this just use the CSS "print" media tag:

@media print {
    /* Print CSS rules go here */
}

If you want a PDF generated from your web screen, look into the Html2PdfConverter forge component:
https://www.outsystems.com/forge/component/209/html2pdfconverter/?Unfollow=False

Let me know if you have any questions!

Thanks


2021-03-18 21-03-15
Benjith Sam
 
MVP

Hi Carlos Messias,


Please mark Brian Gall reply as solution because he is the one who helped you with the solution.

Thanks Brian Gall for the information.


Kind Regards,

Benjith Sam

Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.