GcSpread.Sheets Namespace > Events type : TableFiltering Event |
var instance; // Type: Events instance.TableFiltering = function(sheet, sheetName, table, col, filterValues) { };
TableFiltering = function ( sheet : Sheet, sheetName : string, table : SheetTable, col : number, filterValues : Array ) { };
activeSheet.addTable("Table1", 0, 0, 3, 3, GcSpread.Sheets.TableStyles.dark1()); activeSheet.getCell(0,0).text("Name"); activeSheet.getCell(0,1).text("Value"); activeSheet.getCell(0,2).text("T/F"); activeSheet.getCell(1,0).text("AW"); activeSheet.getCell(1,1).text("5"); activeSheet.getCell(1,2).text("T"); $("#spreadContainer").data("spread").getActiveSheet().bind(GcSpread.Sheets.Events.TableFiltering, function (e, info) { alert("Sheet (" + info.sheetName + ")"); });