We are using CRM 4.0 which requires IE to be run in compatibility mode. If I put the meta tag
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
On my report viewer page then the reports will show up. If that isn't there, then the page is empty except for the toolbar. Problem is with that meta tag in place when the user navigates back to another CRM page then they don't display properly.
So, is there a way to turn that back off when a user leaves the reports page, or what modifications can I do so the report viewer will display correctly even if compatibility mode is enabled?
Thanks,
Adam
Edit:
Adding this to the windows.onload allows the reports to show. Not sure if this is the best resolution, but it does work for now.
document.getElementById('ReportViewer1ReportFrame').style.width = '1000px';
Adam
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
On my report viewer page then the reports will show up. If that isn't there, then the page is empty except for the toolbar. Problem is with that meta tag in place when the user navigates back to another CRM page then they don't display properly.
So, is there a way to turn that back off when a user leaves the reports page, or what modifications can I do so the report viewer will display correctly even if compatibility mode is enabled?
Thanks,
Adam
Edit:
Adding this to the windows.onload allows the reports to show. Not sure if this is the best resolution, but it does work for now.
document.getElementById('ReportViewer1ReportFrame').style.width = '1000px';
Adam