SearchSettingsModel

12 Sep 20251 minute to read

Interface for a class SearchSettings

Properties

fields string[]

Specifies the collection of fields included in search operation. By default, bounded columns of the Grid are included.

ignoreAccent boolean

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

Check the Diacritics filtering.

ignoreCase boolean

If ignoreCase is set to false, searches records that match exactly, else
searches records that are case insensitive(uppercase and lowercase letters treated the same).

key string

Specifies the key value to search Grid records at initial rendering.
You can also get the current search key.

operator 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.