I have a grid with interactive filtering enabled. If the users doubleclicks on a
cell I get the GridViewCellEventArgs.RowIndex to access the Row.
However, when Filtering is active, the RowIndex in the Event does not
point to the correct Row, when I access the
RadGridView _grid.Rows[rowIndex].Cells[colName].Value
The GridViewCellEventArgs.RowIndex seems to point to the unfiltered row
index, while grid.Rows[] contains only the filtered rows.
What am I missing?
2008Q2Sp1