Reputation: 8818
I have an interesting problem. I have a page containing a Telerik chart which also has a "Printer friendly version" type function, which opens a new window with some of the html from the first page. Because of some formatting issues, the printer-friendly version function goes through a different view than the original view.
Here are some points that might be helpful:
The way it works is like this:
I'm thinking this is because IE is pretty strict about HTML validation, and doesn't allow certain elements inside certain other ones. But the problem here is the telerik chart. Any idea what this could be?
Upvotes: 0
Views: 1050
Reputation: 1021
From IE 8 run Developer tools by pressing F12. In there you can change the "Document Mode" to IE8. It could be that your page is opening in IE7 standards mode or Quirks mode. You should set the document mode for your pages by setting the DOCTYPE tag. I am not familiar with Telerik controls, but these kinds of controls typically work on specific modes, like HTML 5, for example.
Upvotes: 1