Posted 31 October 2024, 11:54 am EST
Flexgrid 4.8.20241.657 in a winforms 4.8 program with one column with datatype = boolean.
Shows checkboxes and lets them change.
Public Class Form1
Private Sub C1FlexGrid1_CellChecked(sender As Object, e As C1.Win.C1FlexGrid.RowColEventArgs) Handles C1FlexGrid1.CellChecked
If e.Row Mod 2 = 0 Then
e.Cancel = True
End If
End Sub
End Class
This does not do anything.
How can I ignore the cellcheck, if i.e. there is an error or unwanted?
Do I miss something?
Regards