问题
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