Completed
Last Updated: 11 Nov 2014 11:25 by Chris Ward
ADMIN
George
Created on: 14 Oct 2014 12:13
Category: GridView
Type: Bug Report
1
FIX. RadGridView does not fire the SelectionChanging event when a selected cell is clicked with Ctrl being held
To reproduce:

Set these properties:

radGridView1.SelectionMode = GridViewSelectionMode.FullRowSelect;
radGridView1.MultiSelect = true;

Select a row, hold Ctrl and click the same cell which is selected, you will see that the SelectionChanging event, along with the SelectionChanged one will not be fired.

Workaround:

Use the PropertyChanging event of the rows:

this.Grid.Rows.ToList().ForEach(x => x.PropertyChanging += x_PropertyChanging);

....

void x_PropertyChanging(object sender, Telerik.WinControls.Interfaces.PropertyChangingEventArgsEx e)
{
    if (e.PropertyName == "IsSelected")
    {
    }
}
1 comment
Chris Ward
Posted on: 14 Oct 2014 13:06
Thank you for submitting the bug report Georgi.