Hi Jared,,
Thank you for contacting Syncfusion support.
You can achieve your requirement by using the below code snippet,
Code Snippet[C#]:
this.SyncGrid.CurrentCellLoaded += new GridControlBase.GridCurrentCellLoadedEvent(SyncGrid_CurrentCellLoaded); void SyncGrid_CurrentCellLoaded(object sender, GridCurrentCellLoadedEventArgs e) {var checkbox = e.UIElement as CheckBox; if (checkbox != null) {checkbox.Checked -= new RoutedEventHandler(checkbox_Checked); checkbox.Unchecked -= new RoutedEventHandler(checkbox_Unchecked); checkbox.Checked += new RoutedEventHandler(checkbox_Checked); checkbox.Unchecked += new RoutedEventHandler(checkbox_Unchecked); } }//Event for Unchecked void checkbox_Unchecked(object sender, RoutedEventArgs e) { } //Event for Checkedvoid checkbox_Checked(object sender, RoutedEventArgs e) { } |
For your reference, we have also prepared the sample based on your requirement and you can find the sample under the following location.
Sample: GridDataControl_CheckBoxColumn (2).zip
Please let us know if you have any queries.
Regards,
Gobinath A.
Hi Mark Stevens,
Sorry for the inconvenience caused.
The provided sample was unable to download at you end might be because of our server issue. We have reloaded the sample again and could you please check now.
Sample: GridDataControl_CheckBoxColumn.zip
Please let us know if you have any queries.
Regards,
Gobinath A.