afterEditEnd
Description
Fires after editing of a cell is finished
Usage
afterEditEnd: (cell: string, value: string) => void;
Parameters
The callback of the event takes the following parameters:
cell
- (required) the id of a cellvalue
- (required) the value of a cell
Example
const spreadsheet = new dhx.Spreadsheet("spreadsheet", {});
spreadsheet.parse(data);
// subscribe on the "afterEditEnd" event
spreadsheet.events.on("afterEditEnd", function(cell, value){
console.log("Editing is finished");
console.log(cell, value);
});
Related articles: Event handling