I have a column that is defined as GridViewCheckBoxColumn I'm able to check the checkboxes and the code behind does what it's suppose to do. My problem is when I filter another column the checked rows stay checked but the data for that row has changed. When I try and do it programmically every time I do the following
this.radGVTables.Rows[i].IsSelected = false; |
The radGVTables_ValueChanged event fires and it is looking for the rowindex. But since it was the filter that was selected the rowindex is -1. |
1. Is there a way to change the rowindex or cycle through the rows? |
2. Is there a way to clear out all the checked checkboxes? |
3. How have others handled Checkboxes and Filters? |
Thank You |
Jerry |