SpreadJS Documentation
GC.Spread.Sheets Namespace / Events type / EditorStatusChanged Event
The sheet that triggered the event.
The sheet's name.
The old status of the editor.
The new status of the editor.
In This Topic
    EditorStatusChanged Event
    In This Topic
    Occurs when the editor's status has changed.
    Syntax
    var instance; // Type: Events
    instance.EditorStatusChanged = function(sheet, sheetName, oldStatus, newStatus) { };
    EditorStatusChanged = function ( 
       sheet : Worksheet,
       sheetName : string,
       oldStatus : EditorStatus,
       newStatus : EditorStatus
    ) { };

    Parameters

    sheet
    The sheet that triggered the event.
    sheetName
    The sheet's name.
    oldStatus
    The old status of the editor.
    newStatus
    The new status of the editor.
    Example
    This example uses the EditorStatusChanged event.
    activeSheet.bind(GC.Spread.Sheets.Events.EditorStatusChanged, function (e, info) {    
            alert("Column (" + info.newStatus + ")");
    });
    See Also

    Reference

    Events type