GcSpread.Sheets Namespace > Events type : CellChanged Event |
var instance; // Type: Events instance.CellChanged = function(sheet, sheetName, row, col, sheetArea, propertyName) { };
$("#spreadContainer").data("spread").getActiveSheet().bind(GcSpread.Sheets.Events.CellChanged, function (e, info) { if(info.sheetArea === GcSpread.Sheets.SheetArea.viewport){ alert("Cell index (" + info.row + "," + info.col + ")"); } });