Hello,
I have generated reports in my web application using SQL Server Reporting services. Its working and displaying fine when I open the application in Internet Explorer. But with Firefox Mozilla, the display of report contents is not working proper. Please advise.
Thanks in advance,
Ambili.
Hi,
In Reporting Services, you use a Web browser to view reports and run Report Manager. Not all report functionality is supported by all browsers. The following table describes report functionality restrictions for the supported browsers.
So please make sure if your explorer type match the needs to run reporting service.
For details, see
http://msdn2.microsoft.com/en-us/library/ms156511.aspx
Thanks.
Hello,
Thanks for the prompt response.
As you have specified, I could see that Searching within thereport is not possible with Mozilla, which is possible in IE.
But my major issue is that the data inside the report is notdisplaying properly ( i mean, the formatting of the report contents). In IE, data inside the report is displaying properly. But in Mozilla, only first character of each column is displayed in each row. Any help on this issue will be appreciated.
Thanks in advance,
Ambili.
|||
If the output is mushed height-wise, add this to the ReportServices.css file:
* Fix report IFRAME height for Firefox */
.DocMapAndReportFrame
{
min-height: 860px;
}
For output mushed width-wise, add an empty textbox the width of the expected output.
Hope that helps.
|||Hello,
Thanks a lot for the valuable information.It helped me to solve the problem in case of height-wise alignment in mozilla and I am working with the case of width-wise alignment issue using the idea which you have specified.
Thanks again.
-Ambili.
|||Hi Corwin:
Thank you for the code help in the ReportServices.css file. It worked for me using:
/* Fix report IFRAME height for Firefox */
.DocMapAndReportFrame
{
min-height: 860px;
}
I just had to put the forward slash ( / ) in front of * Fix report IFRAME height for Firefox */
No comments:
Post a Comment