GcSpread.Sheets Namespace > Events type : SelectionChanging Event |
var instance; // Type: Events instance.SelectionChanging = function(sheet, sheetName, oldSelections, newSelections) { };
SelectionChanging = function ( sheet : Sheet, sheetName : string, oldSelections : Array, newSelections : Array ) { };
$("#spreadContainer").data("spread").getActiveSheet().bind(GcSpread.Sheets.Events.SelectionChanging, function (e, info) { //Use IE to see console console.log("Name (" + info.sheetName + ")"); });