hi,
anybody tel me how to get data from hierarchical Grid... i had two grids in my hierarchical grid..i dont know how to get second grid vlues.....
hi Olga, I'm a newbie in infragistic. Can you give me sample code of HierarchicalDataGrid in binding dynamically
Hi,
You can handle one if the following events depending on how early you need to get to the RowIsland or grid, these events live off of the WebHierarchicalDataGrid control
RowIslandCreated, RowIslandDataBinding, or RowIslandDataBound
Also you can access the GridView of the WebHierarchicalDataGrid control, this would be the main grid. Off of that grid there is a Rows collection and each row has a RowIslands property, which is a collection of its child grids, if it has any. This can be done, like so:
this
.WebHierarchicalDataGrid1.GridView.Rows[0].RowIslands
Thanks,
Olga