Is there a way to make the PropertyChanged event fire as soon as a checkbox is checked/unchecked in the XamDataGrid? It appears to be delayed until I exit edit mode for the record and I would like to change that behavior.
My Field is simple:
<igDP:Field Label="Selected" Name="IsSelected" />
Hello,
Thank you for your post!
I have been looking into your issue and have created a small sample application for you. In the sample application I have a simple XamDataGrid bound to a collection. Then I am setting the DataItemUpdateTrigger property of the FieldSettings of the XamDataGrid to be OnCellValueChange. This way when the user checks/unchecks the checkbox the property would update.
On the following link from our documentation you can find more information about the above mentioned property:
http://help.infragistics.com/Help/Doc/WPF/2014.1/CLR4.0/html/InfragisticsWPF4.DataPresenter.v14.1~Infragistics.Windows.DataPresenter.DataItemUpdateTrigger.html
Please find the attached sample application and feel free to let me know if you have any further questions on this matter.