SMART datagrid v.1 > Classes > ColumnFilter

Back  Forward

DataLudi.ColumnFilter.description  property

The description of column filter. 

It is displayed in the tooltip of filter item which is displayed in filter selection box. 

Defaults to null.

Getter
function description(): String
Setter
function setDescription(value: String)
Code -1
    grid.setColumns([{
        name: 'col_1',
        filters: [{
            name: 'filter_01',
            expression: "value > 10 && values['field_2'] == 'a'",
            description: "The value is greater than 10 and field_2 is 'a'"
        }]
    },
    ...
    ]);
See Also
text
name
expression
Examples
Column Filtering