An aspx page is loaded up inside a modal using Kendo Dialog for angular. Intended behaviour for this page is once it is generated it opens the print dialogue. The output of that printing action should be the aspx page. It is so when printed from Chrome/Firefox but IE11 prints only a part of the page behind the actual modal dialogue.
This is achieved in aspx code as follows:
if (!(rsClinicList.EOF))
{
Response.Write("onLoad=\"doPrint();\"");
}
And method called is simply:
function doPrint() {
window.print();
}
So this works exactly as expected inside Chrome/Firefox, how to print the correct content using IE11?