ssrs 报告中的垂直滚动条未出现在 non-compatibilty 模式下的 ie 11 中
vertical scroll bar in ssrs report is not appearing in ie 11 in non-compatibilty mode
我正在使用 Microsoft report viewer(11.0.0) 2012 版本来显示报告,在我的 aspx 页面中,我使用了以下代码。问题是报告在兼容模式下显示垂直滚动条,但在 non-compatibility 模式下它消失了。我尝试将溢出 属性 添加到外部 div 但向下滚动时也会向上滚动报告列 headers 。我无法添加兼容性元标记来解决此问题。请帮忙。谢谢
<div style="height:75%;width:95%;">
<rsweb:ReportViewer ID="DailyReportViewer" AsyncRendering="false" SizeToReportContent="false" BackColor="transparent" DocumentMapWidth="40%" DocumentMapCollapsed="true" InternalBorderColor="Transparent" runat="server">
</rsweb:ReportViewer>
</div>
我也遇到过。
解决方案是
<body style="margin: 0px; overflow: auto !important;">
我正在使用 Microsoft report viewer(11.0.0) 2012 版本来显示报告,在我的 aspx 页面中,我使用了以下代码。问题是报告在兼容模式下显示垂直滚动条,但在 non-compatibility 模式下它消失了。我尝试将溢出 属性 添加到外部 div 但向下滚动时也会向上滚动报告列 headers 。我无法添加兼容性元标记来解决此问题。请帮忙。谢谢
<div style="height:75%;width:95%;">
<rsweb:ReportViewer ID="DailyReportViewer" AsyncRendering="false" SizeToReportContent="false" BackColor="transparent" DocumentMapWidth="40%" DocumentMapCollapsed="true" InternalBorderColor="Transparent" runat="server">
</rsweb:ReportViewer>
</div>
我也遇到过。
解决方案是
<body style="margin: 0px; overflow: auto !important;">