dotnet 中的 Rdlc 报告

发布于 2024-09-01 11:50:06 字数 91 浏览 6 评论 0原文

我正在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

以歌曲疗慰 2024-09-08 11:50:06

虽然这已经很旧了,但当我寻找类似问题时,它仍然出现在谷歌搜索中。所以我在这里发布这个以防万一...

在 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.

勿忘初心 2024-09-08 11:50:06

设置您的fixheader 属性为true

为此Select Table > 属性> fixheader = true

第二种方式以 xml 版本打开 rdlc 文件,

将修复标头放入标头标记中,如下所示

<header>
  <FixedHeader>true</FixedHeader>
</Header>

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

<header>
  <FixedHeader>true</FixedHeader>
</Header>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文