SMART datagrid v.1 > Classes > OperateOptions

Back  Forward

DataLudi.OperateOptions.exceptFixedRowsFromFiltering  property

If it is true, it will exclude the fixed rows from filtering. 

Defaults to true.

Getter
function exceptFixedRowsFromFiltering(): Boolean
Setter
function setExceptFixedRowsFromFiltering(value: Boolean)
Code -1
    grid.setOptions({
        operate: {
            exceptFixedRowsFromFiltering: true,
            exceptFixedRowsFromSorting: true
        }
    });
Code -2
    grid.setOperateOptions({
        exceptFixedRowsFromFiltering: true,
        exceptFixedRowsFromSorting: true
    });
Code -3
    grid.operateOptions().setExceptFixedRowsFromFiltering(true);
See Also
exceptFixedRowsFromSorting
filteringEnabled
fixedRowCount
Examples
Column Filtering