SMART datagrid v.1 > Classes > DataColumn
Change the activated state of filters transferred by parameter filterNames among the registered Column Filters as inactive.
In other words, it will cancel the covered filters and apply the uncovered filters.
$('toggleFilters').click(function () {
var filter = column.getFilter('filter1');
if (filter.active()) {
column.toggleFilters(['filter1']);
}
});