Click here to Skip to main content
15,891,629 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
An iframe is used to print the table contents displayed in application. The table contents are added to an aspx page at runtime and that page is source of iframe. Below method is used to print that table:
window.frames["PrintFrame"].focus();
window.frames["PrintFrame"].print();

It works fine on IE-7 to IE-9, But in IE-10 it prints table's contents with small font. I have realized that the jQuery Splitter Plugin which is used in application causes that problem. Because, when I remove the link of js file of that plugin it works fine on IE-10 too.

While debuging application, I come to know that plugin applies some settings on iframes in the window. But, why this is only affecting IE-10.

Help will be appreciated.

Note: I have displayed the contents instead of printing from ifram, here style is as expected and when I print from that window, it prints as expected. But, problem is only when printing with iframe.
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900