afterEditEnd
fires after editing of a cell is ended
afterEditEnd: (value: string | number | boolean, row: object, column: object) => void;
Parameters:
The callback of the event is called with the following parameters:
value: string | number | boolean
- 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:
added in v6.1