Direct Print Option

0
Is there any way to print the template without downloading the pdf page?
asked
1 answers
1

Hii Pravin,

You can add a JavaScript call in nanoflow with “window.print()” as a function.

If want to exclude app Layout then create a separate Layout for print view. 

Use below CSS to hide the Print button.

@media print{
.print-button-hide{

display:None;

}}

 

answered