Infragistics Management Web Data Network

I am working on a web project where I need to use the WebDataGrid of the Infragistics controls and customize the header layout. I didn't find an event like InitializeLayout in UltraWebGrid. My problem is I want to iterate over the title. What should I do?

-1


source to share


3 answers


You need to use a control WebHierarchicalDataGrid

to represent hierarchical data structures instead WebDataGrid

, check the samples here http://samples.infragistics.com/aspnet/ComponentOverview.aspx?cn=hierarchical-data-grid p>



+1


source


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

Inside it, you can access the following headers:



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

0


source


I'm sure Vishal meant "WebDataGrid". And there is no such handler for that, and there is no concept of "Groups". I thus have a similar problem. In fact, I am not clear in which event handler I have access to the header and footer rows, because the entire WebDataGrid control has an InitializeRow handler that is passed in relation to the data rows, not the header row. This way I just do the best I can in the Load Loader generator.

0


source







All Articles