This question is locked. New answers and comments are not allowed.
How can I get the row index of a row in the master grid? Before adding the detail grid, I could use e.row.rowIndex in the OnRowSelect handler. With the detail grid added, the rowIndex changes depending on whether or not details have been expaned. For example, I have a master grid with two rows. Before expanding any details the e.row.rowIndex contains 1 for the second row. After the first row is expanded (even if it is later colapsed) e.row.rowIndex contains 2. Grid.data still has just two rows 0 and 1. I need to get some values off hidden columns in the grid for the selected row. Is there any way to do that with a master/detail grid?