SMART datagrid v.1 > Classes > ColumnAutoFilter
Only if specify this property as true, the filter will be applied.
It is the Default Property of this class.
Defaults to false.
$('#toggleAutoFilter').click(function () {
var col = grid.columnByName('colName');
col.setAutoFilter({
active: col.autoFilter().active()
});
// or, since it is the default property, you can simply write as below.
col.setAutoFilter(col.autoFilter().active());
});