Formatting an SSRS report to not look terrible in Firefox

那年仲夏 提交于 2019-12-24 07:35:36

问题


I've got an SSRS report that I'm dynamically writing to an HTML page. The report looks great in IE, but it keeps none of its formatting in Firefox.

I've done a bit of research on this, and found that I can insert rectangles inside of all of my matrix data fields, which will keep the formatting. This seems to me like a lot of work for something that I'm sure someone has solved more elegantly before.

I've also tried messing with the CanGrow and CanShrink properties of the matrix. No help.

Thanks in advance!


回答1:


Nice discussion here and here

Some highlights from that discussion:

  • Try setting the CanGrow = false; for the textbox.
  • Are the problems with the display? With the width and height lost? Look at this thread
  • CSS file entry as follows:

make this change in the css file

/* Fix report IFRAME height for Firefox */
.DocMapAndReportFrame
{
 min-height: 860px;
} 



回答2:


Just set the form height to 95% in Pages > ReportViewer.aspx



来源:https://stackoverflow.com/questions/697568/formatting-an-ssrs-report-to-not-look-terrible-in-firefox

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!