SpreadJS Documentation
GC.Spread.Sheets Namespace / Events type / EditChange Event
The sheet that triggered the event.
The sheet's name.
The row index of cell.
The column index of cell.
The value from the current editor.
In This Topic
    EditChange Event
    In This Topic
    Occurs when a cell is in edit mode and the text is changed.
    Syntax
    var instance; // Type: Events
    instance.EditChange = function(sheet, sheetName, row, col, editingText) { };
    EditChange = function ( 
       sheet : Worksheet,
       sheetName : string,
       row : number,
       col : number,
       editingText : object
    ) { };

    Parameters

    sheet
    The sheet that triggered the event.
    sheetName
    The sheet's name.
    row
    The row index of cell.
    col
    The column index of cell.
    editingText
    The value from the current editor.
    Example
    This example creates log text for the EditChange event.
    // Use IE to see the console log text
    activeSheet.bind(GC.Spread.Sheets.Events.EditChange, function (sender, args) {
        console.log("Cell (" + args.row + ", " + args.col + ") data has been changed.")
    });
    See Also

    Reference

    Events type