gmorris59
2017-03-21T07:36:24Z
I have a column defined as contents with checkbox. There is a on CellClick event handler. Sometimes when I click on the checkbox the state does not toggle. In the event handler, I do much work in terms of refreshing other grids but many times the checkbox does not change state.

tentec1.png

Click to View Image79 View(s)

Igor/10Tec
2017-03-21T17:45:37Z
If you use the default settings, first you need to select a cell with check box to change its state with the subsequent click. If you want to change the check box state when the user clicks such a cell, enable single-click edit:
With iGrid1
   .Cols.Count = 5
   .Rows.Count = 10
   With .Cols(2).CellStyle
      .Type = iGCellType.Check
      .SingleClickEdit = iGBool.True
   End With
End With
gmorris59
2017-05-04T13:08:16Z
Can you confirm when the event CellClick is raised when a checkbox? Is this after or before the state has been changed? I think it is before - is there an event after it has changed?