Search results

Predicate API in Angular TreeGrid API component

Represents the Tree Grid predicate for the filter column.

Properties

field

string

Defines the field name of the filter column in Tree Grid.

Defaults to

ignoreAccent

boolean

If ignoreAccent is set to true, then filter ignores the diacritic characters or accents while filtering in Tree Grid.

Defaults to false

matchCase

boolean

If match case set to true, then filter records with exact match or else filter records with case insensitive(uppercase and lowercase letters treated as same) in Tree Grid.

Defaults to null

operator

string

Defines the operator to filter Tree Grid records. The available operators and its supported data types are:

Operator
Description
Supported Types
startswith
Checks whether the value begins with the specified value.
String
endswith
Checks whether the value ends with the specified value.


String
contains
Checks whether the value contains the specified value.


String
equal
Checks whether the value is equal to the specified value.


String | Number | Boolean | Date
notequal
Checks for values that are not equal to the specified value.


String | Number | Boolean | Date
greaterthan
Checks whether the value is greater than the specified value.

Number | Date
greaterthanorequal
Checks whether the value is greater than or equal to the specified value.


Number | Date
lessthan
Checks whether the value is less than the specified value.


Number | Date
lessthanorequal
Checks whether the value is less than or equal to the specified value.


Number | Date

Defaults to null

predicate

string

Defines relationship between one filter query and another by using AND or OR predicate.

Defaults to null

value

string | number | Date | boolean

Defines the value used to filter records in Tree Grid.

Defaults to