Spread.Sheets Documentation
EditEnding type
GC.Spread.Sheets.Events Namespace : EditEnding type
Occurs when a cell is leaving edit mode.
Example
//This example uses the EditEnding event.
activeSheet.bind(GC.Spread.Sheets.Events.EditStarting, function (sender, args) {
    console.log("Start cell editing.");
});
activeSheet.bind(GC.Spread.Sheets.Events.EditEnding, function (sender, args) {
    console.log("EditEnding event.");
});
activeSheet.bind(GC.Spread.Sheets.Events.EditEnded, function (sender, args) {
    console.log("EditEnded event.");
});
Inheritance Hierarchy

Object
   GC.Spread.Sheets.Events.EditEnding

See Also

Reference

GC.Spread.Sheets.Events Namespace