SMART datagrid v.1 > Classes > OperateOptions

[ grids ver.1.3.2]   Back  Forward

DataLudi.OperateOptions.passiveFiltering  property

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.

Getter
function passiveFiltering(): Boolean
Setter
function setPassiveFiltering(value: Boolean)
Code -1
    grid.setOptions({
        operate: {
            passiveFiltering: true
        }
    });
Code -2
    grid.setOperateOptions({
        passiveFiltering: true
    });

 grid.operateOptions().passiveFiltering(true);  

See Also
filteringEnabled
pageFiltering
Examples
Tree Filtering