Hi,
I have a RadGridView with a GridViewCheckBoxColumn defined like so:
The checkbox autoselect works as expected - one click checks or unchecks it.
I need the Selected property, bound to DataMemberBinding, to get notified/called any time checkbox check/uncheck happens. In my case this does not happen when the cell is in edit mode. So I click the cell, the check box gets checked, but no notification goes to the Selected property until I click on some other cell.
Looks like the event doesn't get sent to the bound property while the cell is in edit mode, even though the check box gets checked, only after leaving the edit mode the property gets the notification.
How can this be fixed so that one click both checks the checkbox and notifies my Selected property without having to leave the cell?
Really appreciate the help!
I have a RadGridView with a GridViewCheckBoxColumn defined like so:
<
telerik:GridViewCheckBoxColumn
AutoSelectOnEdit
=
"True"
DataMemberBinding
=
"{Binding Selected, Mode=TwoWay}"
EditTriggers
=
"CellClick"
/>
The checkbox autoselect works as expected - one click checks or unchecks it.
I need the Selected property, bound to DataMemberBinding, to get notified/called any time checkbox check/uncheck happens. In my case this does not happen when the cell is in edit mode. So I click the cell, the check box gets checked, but no notification goes to the Selected property until I click on some other cell.
Looks like the event doesn't get sent to the bound property while the cell is in edit mode, even though the check box gets checked, only after leaving the edit mode the property gets the notification.
How can this be fixed so that one click both checks the checkbox and notifies my Selected property without having to leave the cell?
Really appreciate the help!