Hello
I am migrating from 11.1 to 13.2 and I need yo get the active row band.
I previously did it like this: mygrid.DisplayLayout.ActiveRow.Band
But now I don't know how to obtain the data I need.
Thank you!
Hello,
WebHierarchicalDataGrid has different architecture from the UltraWebGrid. In WHDG you can get the active cell from the Activation behavior and access the row containing this cell like this:
GridRecordItem cell = WebHierarchicalDataGrid1.Behaviors.Activation.ActiveCell;
GridRecord row = cell.Row;
Here you can find more information about WHDG structure: http://help.infragistics.com/Doc/ASPNET/2013.2/CLR4.0/?page=WebHierarchicalDataGrid_About_WebHierarchicalDataGrid.html
If you have any further questions, please let me know.
Yes, I am aware of that.
I was asking how to get which band is the one containing the selected row, since in my hierarchical data grid I can have multiple band and each one of that band has multiple rows.
I need to know in which band the selected row is contained.
Thank you