SMART datagrid v.1 > Classes > OperateOptions

Back  Forward

DataLudi.OperateOptions.filteringEnabled  property

If it is true, the user can display the filter box by clicking the filter handle in column header cell during run time. 

Although you can set DataColumn.filterable property to specify whether individual filtering of each column is possible, you should specify this property value as true first. 

Defaults to true.

Getter
function filteringEnabled(): Boolean
Setter
function setFilteringEnabled(value: Boolean)
Code -1
    grid.setOptions({
        operate: {
            filteringEnabled: true,
            filterHandleVisibility: true
        }
    });
Code -2
    grid.setOperateOptions({
        filteringEnabled: true,
        filterHandleVisibility: true
    });
Code -3
    grid.operateOptions().setFilteringEnabled(true);
See Also
filterHandleVisibility
filterSelector
DataColumn.filterable
FilterSelectorOptions
Examples
Column Filtering
Tree Filtering