I'm trying to update an XtraGrid Gridview row after checking a bound checkbox, but the datasource doesn't change until you leave the cell. I have attached a sample project that provides an example of this issue. When the 'IsFree' is checked, the total price should update to '0', but it does not until you click outside of the checkbox control. The update is handled through a BindingList<T>, with the base object implementing INotifyPropertyChanged and the list object overriding OnListChanged.
I have tried to use PostEditor and UpdateCurrentRow on the repository item's EditValueChanged event to no avail. Thanks.