Right now the cell is updated only when it looses focus. This is kind of inappropriate for me?
How to cause EditBox in cell to update when e.g. Enter key is pressed?
How to cause ComboBox in drop-down mode to update cell when an item is selected in drop-down list?
How to cause check-box to update immediatelly when it is checked or unchecked?
I need more prompt updating, not just when the cell looses focus.
Viktor
To force a row in the grid to commit it's changes to the underlying data source, you can call the Update method on the row. In the case of the CheckBox cell, you could use the CellChange event for this. For the Enter key, you could handle the KeyPress event. For DropDowns, you could use the AfterCellListCloseUp event, or maybe use CellChange.