Hello, I'm in front of a mystery.
I have 2 columns, created dynamically in a RadGridView. Let's name them column A and column B.
When I have one row, and I select a cell in column A, then click on column B's header to sort it, SelectedCellsChanged is fired and args.RemovedCells contains my cell. From this, I understand that I lose my selection when I sort a column, which is perfectly fine.
When I have two rows, and I select both cells in column A, then click on column B's header to sort it, both GridViewCellInfo have their .Item to null in SelectedCellsChangedEventArgs.RemovedCells, which is unexpected on my side!
That way, I can't identify the rows to which these removed cells belong, which is painful.
Why is that?
Thanks!