SMART datagrid v.1 > Classes > DataColumn

[ grids ver.1.3.7]   Back  Forward

DataLudi.DataColumn.autoFilter  property

Auto filter Setting Object which is set in column. 

Auto filter is a filter device which displays the values not duplicated among those data cells involved in column, and only the data rows corresponding to the selected value. It can be used in conjunction with the existing Column Filter

Defaults to .

Getter
function autoFilter(): Object
Setter
function setAutoFilter(value: Object|ColumnAutoFilter)
Code -1
    grid.setColumns([{
        fieldName: "field01",
        name: "col1",
        autoFilter: {
            active: true,
            valueScale: 2,
        }
    }, {
        ...
    }]);
Note
See Also
ColumnAutoFilter
filters
Examples
Column Auto Filtering