This question is locked. New answers and comments are not allowed.
I am using the new gridviewselect column and it is working great. My grid is set up to be readonly and the user will select rows. After selecting and pressing an edit button the grid will hide and a second editable grid will be displayed with the records selected in the first grid. This is working fine, but what I want is if the user clicks a row it just adds that record to the selected items collection. I have the following.
| Private Sub myGrid_SelectionChanged(ByVal sender As Object, ByVal e As Telerik.Windows.Controls.SelectionChangeEventArgs) Handles myGrid.SelectionChanged |
| If e.AddedItems.Count <> 0 Then |
| For Each item As Object In e.RemovedItems |
| myGrid.SelectedItems.Add(item) |
| Next |
| End If |
| End Sub |
When I turn the debugger on this seems to work fine, but if I do not have a break point in this function when I click a row not clicking the gridviewselect column it will not add back all of the removed items.