Infragistics 控件的 Web 数据网格
我正在开发一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要使用
WebHierarchicalDataGrid
控件来表示分层数据结构,而不是WebDataGrid
,请在此处查看示例 http://samples.infragistics.com/aspnet/ComponentOverview.aspx?cn=hierarchical-data-gridYou need to use
WebHierarchicalDataGrid
control for representing hierarchical data structures insteadWebDataGrid
, check out the samples here http://samples.infragistics.com/aspnet/ComponentOverview.aspx?cn=hierarchical-data-grid您应该能够在 UltraWebGrids InitializeLayout() 处理程序中完成这项工作。
在其中,像这样访问标题:
注意:可以在 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:
Note: a good resource for Infragistics support can be found at http://forums.infragistics.com/forums/61.aspx
我敢打赌 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.