SMART datagrid v.1 > Classes > OperateOptions
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.
grid.setOptions({
operate: {
filteringEnabled: true,
filterHandleVisibility: true
}
});
grid.setOperateOptions({
filteringEnabled: true,
filterHandleVisibility: true
});
grid.operateOptions().setFilteringEnabled(true);