I have a problem with DataGrid from WPFToolkit. My grid has DataGridCheckBoxColumn. When I change value of some cell in this column, validation and real source updating occures only after a cell has lost focus. So, if I change checkbox value in a cell and leave focus inside it, the property of a binded object wouldn't be changed.
Column's binding property UpdateSourceTrigger is set to PropertyChanged and Mode is set to TwoWay.
How can I make binding update my source object immediatly after a checkbox value has been changed?