Hi, Boki and other users who wish to convert NG5 to NG6:
In NextGrid5 OnCellClick when used with a NxCheckBox sees the boolean state as FALSE, whereas NextGrid6 sees the CheckBox boolean state as TRUE when clicking on the cell that is visually unchecked.
Example from my code:
IF (Columns[ACol] IS TNxCheckBoxColumn) AND
((Pos('INDICATED', UpperCase(Columns[ACol].Header.Caption)) > 0) OR
(Pos('INDCT''D', UpperCase(Columns[ACol].Header.Caption)) > 0)) AND
Cell[ACol, ARow].AsBoolean THEN
The intent is to then delete all cells in the row when UNCHECKING the Indicated column.
In NextGrid5 it works for the above code; in NextGrid6, I had to add "not" to "Cell[ACol, ARow].AsBoolean THEN" for it to work.
Chuck