Print Dialog not poping up from a signed Applet
Hello
I am trying to print a file from a signed applet and i need the default print dialog to pop up on the client side , the applet loads fine shows the certificate and when i try to print it does not do any thing. I am using Jpedal for pdf printing. This works fine when i run it in the applet viewer.
if (printJob.printDialog()) {
//pages to print
decode_pdf.setPagePrintRange(1, decode_pdf.getPageCount());
printJob.setPageable(decode_pdf);
printJob.print(pras);
}
Thanks
Surendra

