SMART datagrid v.1 > Classes > DataColumn
Change the activated state of all registered Column Filters as inactive.
In other words, it will cancel the covered filters and apply the uncovered filters.
$('#toggleFilters').click(function () {
var column = grid.focusedColumn();
if (column instanceof DataColumn) {
column.toggleAllFilters();
}
});