afterEditEnd
fires after editing of a cell is ended
afterEditEnd: (value: string | number | boolean | Date, row: object, column: object) => void;
Parameters:
The callback of the event is called with the following parameters:
value: string | number | boolean | Date- the new value of a cellrow: object- an object with a row configurationcolumn: object- an object with a column configuration
Example
grid.events.on("afterEditEnd", (value, row, column) => {
    // your logic here
});
Related sample: Grid. Events
Change log:
- The value of a cell can have the Date type since v9.0
 - Added in v6.1