How do I open the print dialog from the app? I wish open this dialog when a button named "Print" is clicked.
Printable View
How do I open the print dialog from the app? I wish open this dialog when a button named "Print" is clicked.
That would be javascript:
Code:<input type="button" id="btnPrint" name="btnPrint" value="Print" onclick="window.print();">
Yes of course, thanks a lot!