SMART datagrid v.1 > Classes > OperateOptions
If specify as true, it will display all rows which pass the filter if possible.
Currently, it can be applied to TreeView column filtering. If it is false, when the top tree row is excluded by filtering, the bottom rows will be excluded unconditionally, and if specify as true, when at least one bottom row exists after filtering, the ancestor rows will be displayed unconditionally.
Defaults to false.
grid.setOptions({
operate: {
passiveFiltering: true
}
});
grid.setOperateOptions({
passiveFiltering: true
});