Hello All.
I've a GridView with a checkbox column
Now it seems the binding is updated only on lost focus (for example, when clicking on another cell/row) and not according to the UpdateSourceTrigger= PropertyChanged.
This is a problem for me, since I've a menu bar which has commands (like delete) which work on the selected rows, and when the menu item is clicked, the Checkbox binding isn't yet updated. Basically you have to select the checkbox, click on the grid outside the checkbox, and only then click on the menu item.Is there indeed a problem here, or am I doing something wrong? Should I simply use GridViewDataColumn with checkbox instead of GridViewCheckBoxColumn?
Yours,
Roee
I've a GridView with a checkbox column
<
telerik:GridViewCheckBoxColumn
DataMemberBinding
=
"{Binding IsSelected, Mode=TwoWay, UpdateSourceTrigger= PropertyChanged}"
.../>
Now it seems the binding is updated only on lost focus (for example, when clicking on another cell/row) and not according to the UpdateSourceTrigger= PropertyChanged.
This is a problem for me, since I've a menu bar which has commands (like delete) which work on the selected rows, and when the menu item is clicked, the Checkbox binding isn't yet updated. Basically you have to select the checkbox, click on the grid outside the checkbox, and only then click on the menu item.Is there indeed a problem here, or am I doing something wrong? Should I simply use GridViewDataColumn with checkbox instead of GridViewCheckBoxColumn?
Yours,
Roee