搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

Pdf content not loading while printing using JavaScript

more options

In my web app, I am trying to print a doc using JavaScript, but content of the pdf is not getting loaded, this can be seen in the below link. https://drive.google.com/file/d/0B2nqjT-VxFWwVVhsQ1hLUnJ3MFU/view?usp=sharing

Code: var printWin = window.open(this.lURL, , 'top=100, left=500, width=900, height=800, titlebar=no'); printWin.print();

"this.lURL" is link which brings the pdf file/doc.

Note: As soon as I click on cancel button of print, the content gets loaded. And if I click print blank page gets printed.

In my web app, I am trying to print a doc using JavaScript, but content of the pdf is not getting loaded, this can be seen in the below link. https://drive.google.com/file/d/0B2nqjT-VxFWwVVhsQ1hLUnJ3MFU/view?usp=sharing Code: var printWin = window.open(this.lURL, '', 'top=100, left=500, width=900, height=800, titlebar=no'); printWin.print(); "this.lURL" is link which brings the pdf file/doc. Note: As soon as I click on cancel button of print, the content gets loaded. And if I click print blank page gets printed.

所有回复 (2)

more options

I understand that the web app that your are developing has a function to print the contents of a pdf created with javascript, :

Please first check these basic troubleshooting steps for printing:

Does this happen with the default pdf viewer or another?

Next also check with stackoverflow.com: Where to go for developer support

more options

guigs2 said

I understand that the web app that your are developing has a function to print the contents of a pdf created with javascript, : Please first check these basic troubleshooting steps for printing: Does this happen with the default pdf viewer or another? Next also check with stackoverflow.com: Where to go for developer support

I want a solution which doesn't require to reset or change the settings of the browser. Once the app is available globally everyone should be able to use this functionality without altering the settings of the browser.