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.