AD
Administrator
Syncfusion Team
April 10, 2004 05:18 PM UTC
The checkbox is special in that it immediately saves the changed value to the grid itself with each change. So, in CurrentCellChanged, you can get the latest value of a checkbox directly from the grid,
this.gridDataBoundGrid1[cc.RowIndex, cc.ColIndex].CellValue
For other celltypes, you would get the value from the CurrentCell.Renderer.ControlText.
If you run the celltype samples (Syncfusion\Essential Suite\Grid\Samples\CellTypes), they have the option of showing the currentcell events in the textbox at the bottom of the form.