I need to take action when a checkbox is checked. I'm not using the native "edit mode" of the grid. I'll take action and update the underlying data myself the instant the checkbox is toggled.
Is there an event? "PropertyChanged" doesn't seem to be the ticket.
It sounds exactly what I need, Joe... but I can't find them! Below is the xaml showing my field layout:
<igDP:Field Name="MyCheckBox" Label="Ignore" > <igDP:Field.Settings> <igDP:FieldSettings EditAsType="{x:Type sys:Boolean}" AllowEdit="True" EditorType="{x:Type igEditors:XamCheckEditor}" /> </igDP:Field.Settings></igDP:Field>