Infragistics 控件的 Web 数据网格

发布于 2024-07-10 16:52:00 字数 132 浏览 6 评论 0原文

我正在开发一个 Web 项目,需要使用 Infragistics 控件的 WebDataGrid 并自定义标题布局。 我在UltraWebGrid中没有找到像InitializeLayout这样的事件。 我的问题是我想在标题中行。 我该怎么办?

I am working on a web project where I need to use WebDataGrid of Infragistics controls and customise the header layout. I did not find event like InitializeLayout in UltraWebGrid. My problem is that i want to row in header. What do I do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

美人骨 2024-07-17 16:52:00

您需要使用 WebHierarchicalDataGrid 控件来表示分层数据结构,而不是 WebDataGrid,请在此处查看示例 http://samples.infragistics.com/aspnet/ComponentOverview.aspx?cn=hierarchical-data-grid

You need to use WebHierarchicalDataGrid control for representing hierarchical data structures instead WebDataGrid, check out the samples here http://samples.infragistics.com/aspnet/ComponentOverview.aspx?cn=hierarchical-data-grid

如若梦似彩虹 2024-07-17 16:52:00

您应该能够在 UltraWebGrids InitializeLayout() 处理程序中完成这项工作。

在其中,像这样访问标题:

e.Layout.Bands[0].Columns.FromKey(<data field>).Header...

注意:可以在 http 找到 Infragistics 支持的良好资源://forums.infragistics.com/forums/61.aspx

You should be able to do this work in the UltraWebGrids InitializeLayout() handler.

Within it, access the headers like such:

e.Layout.Bands[0].Columns.FromKey(<data field>).Header...

Note: a good resource for Infragistics support can be found at http://forums.infragistics.com/forums/61.aspx

開玄 2024-07-17 16:52:00

我敢打赌 Vishal 的意思是“WebDataGrid”。 为此,没有这样的处理程序,也没有 Bands 的概念。 因此我也有类似的问题。 事实上,我不清楚在哪个事件处理程序中我可以访问页眉和页脚行,因为所有 WebDataGrid 控件都有一个 InitializeRow 处理程序,它传递对数据行的引用,而不是标题行。 因此,我只是在通用控件加载处理程序中尽我所能。

I bet Vishal meant "WebDataGrid". And for that there is no such handler, nor is there a concept of Bands. I thus have a similar problem. In fact, it is unclear to me in which event handler I have access to the header and footer rows because all the WebDataGrid control has is an InitializeRow handler which passes in reference to the Data Rows, not the header row. Thus I simply do whatever I can in the generic control Load handler.

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