Spread.Sheets Documentation
EditEnded type
GC.Spread.Sheets.Events Namespace : EditEnded type
Occurs when a cell leaves edit mode.
Example
//This example creates log text for the EditStarting and EditEnded events.
 // Use IE to see the console log text
var activeSheet = spread.getActiveSheet();
activeSheet.bind(GC.Spread.Sheets.Events.EditStarting, function (sender, args) {
    console.log("Start cell editing.");
});
activeSheet.bind(GC.Spread.Sheets.Events.EditEnded, function (sender, args) {
    console.log("Finish cell editing.");
});
Inheritance Hierarchy

Object
   GC.Spread.Sheets.Events.EditEnded

See Also

Reference

GC.Spread.Sheets.Events Namespace