I have a grid where the first column is checkboxes. When clicking a checkbox cell it is checked/unchecked as expected. My issue though is this:
When I have selected (not checked) multiple rows with click – shift + click I would like to be able to click one of the checkboxes and the checkboxes of ALL the selected rows should be toggled, without the row selection updating. The problem is that as soon as a row is clicked the selected rows are updated to contain only the clicked row. I have verified this with a Cell.Click event.
Is there anyway to trap the click and get the collection of selected rows before they are deselected?
The worst case solution I guess would be to set selectionMode to None and code the selection logic myself by putting Cell.Click events on all cells. Was hoping I dont have to do that 🙂
Imported from legacy forums. Posted by Tomas (had 2584 views)