Spread.Sheets Documentation
TableFiltered type
GC.Spread.Sheets.Events Namespace : TableFiltered type
Occurs when a table column has just been automatically filtered.
Example
//This example uses the TableFiltered event.
activeSheet.tables.add("Table1", 0, 0, 3, 3, GC.Spread.Sheets.Tables.TableTheme.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");
activeSheet.bind(GC.Spread.Sheets.Events.TableFiltered, function (e, info) {
       alert("Sheet (" + info.sheetName + ")");
});
Inheritance Hierarchy

Object
   GC.Spread.Sheets.Events.TableFiltered

See Also

Reference

GC.Spread.Sheets.Events Namespace