dotnet 中的 Rdlc 报告
我正在 dotnet2.0 C# 中生成 rdlc 报告。我的疑问是我想冻结 rdlc 报告中的表标题(如 Excel 冻结)。由于我的表数据比较多,所以需要这个选项。
I am generating rdlc report in dotnet2.0 C#. My doubt is I want to freeze the Table header (like Excel freeze) in the rdlc report. Since my table data is more, I need this option.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
虽然这已经很旧了,但当我寻找类似问题时,它仍然出现在谷歌搜索中。所以我在这里发布这个以防万一...
在 SSRS 2008 中,冻结行或列的选项是 FixData = true。有关详细信息,请参阅此文章:http://support.microsoft.com/kb/955822
另外,如果允许您的 ReportViewer 控件延伸到整个 HTML 页面,它可能会设置内部表的高度以包含数据集中的所有行(或者可能行适合“ReportViewer 页面”)。在这种情况下,整个页面都会启用滚动条,并且报表无法保持顶部行冻结。相反,将 ReportViewer 控件放置在某个查看容器内,并添加一个脚本来调整窗口大小时的宽度和高度。
Although this is old, it still came up in Google search when I was looking for a similar issue. So I'm posting this here just in case...
In SSRS 2008 the option to freeze a row or a column is FixedData = true. See this article for details: http://support.microsoft.com/kb/955822
Also, if your ReportViewer control is allowed to stretch to the entire HTML page, it will likely set the height of the internal table to include all rows in the dataset (or for however may rows fit on "ReportViewer page"). In that case the scroll bar is enabled for the entire page, and the report cannot keep top rows frozen. Instead place the ReportViewer control inside some viewing container and add a script to adjust width and height on window resizing.
设置您的fixheader 属性为true
为此
Select Table > 属性> fixheader = true
第二种方式以 xml 版本打开 rdlc 文件,
将修复标头放入标头标记中,如下所示
set your fixheader property true
for this
Select Table > property > fixheader = true
Second way open your rdlc file in xml edition
put the fix header as show below in your header tags