Skip to main content

afterEditEnd

fires after editing of a cell is ended

afterEditEnd: (value: string | number | boolean, row: object, col: object) => void;

Parameters:

  • value: string | number | boolean - the new value of a cell
  • row: object - an object with a row configuration
  • col: object - an object with a column configuration

Example

grid.events.on("afterEditEnd", function(value,row,column){
// your logic here
});

Change log:

added in v6.1