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