Configures the filtering behavior of the TreeGrid.
string[]
Specifies the columns to be searched at initial rendering of the TreeGrid. You can also get the columns that were currently filtered.
Defaults to []
Defines the filter types. The available options are,
Parent
: Initiates filter operation after Enter key is pressed.Child
: Initiates filter operation after a certain time interval. By default, time interval is 1500 ms.Defaults to Parent
boolean
If ignoreCase set to true, then search ignores the diacritic characters or accents while filtering.
Check the
Diacritics
filtering.
Defaults to false
string
A key word for searching the TreeGrid content.
string
Defines the operator to search records. The available operators are:
Operator |
Description |
startswith |
Checks whether the string begins with the specified string. |
endswith |
Checks whether the string ends with the specified string. |
contains |
Checks whether the string contains the specified string. |
equal |
Checks whether the string is equal to the specified string. |
notequal |
Checks for strings not equal to the specified string. |
Defaults to ‘contains’