I have a grid with a MasterTable and a DetailTable.
There are times in the life of my app when I have the DetailTable open on a particular row of the MasterTable and I do something that requires the grid to be rebound.
I know the MasterTable row index and the row index on the DetailTable.
After I have rebound the grid, how can I get the grid to expand the relevant MasterTable row, populate the DetailTable and select the relevant row in it?
The best I could come up with is something like this...
RadGrid1.MasterTableView.Items[MasterTableRowIndex].ChildItem.Expanded = true; |
Sadly this doesn't do what I thought it might.
Anyone have any clues?
--
Stuart