In my CRM 2011, I have a dashboard that contains a report. This report opens correctly on any browser but Internet Explorer.
I did some trials and it turns out to be a problem with the IFrame height of the reportviewer which is set to "100%" it's not rendered correctly, however when the height is set to a fixed value it works fine.
Firefox has a fix, it adds a dummy "div" with height=100% as a container for the reportviewer with the following CSS:
IE7-Height-Fix-Dummy-Container {
;
height: 100%;
top: 0px;
left: 0px;
width: 100%
}
When I remove the check from "Height: 100%", Firefox does the same behaviour with IE, the IFrame shrinks to just a few lines clipping the report content.
The solutions I found online was to change the css of the reportviewer or the page itself, but I'm unable to do that with a System Dashboard, it's not a webresource I can adjust manually. Has anybody got a solution for this ?