JavaScript/jQuery FilterBuilder - filterOperationDescriptions

Specifies filter operation descriptions.

Type:

Object

The following code sample illustrates how to set this property:

index.js
  • $(function() {
  • $("#filterBuilderContainer").dxFilterBuilder({
  • // ...
  • filterOperationDescriptions: {
  • startsWith: "Begins with"
  • }
  • });
  • });
See Also

between

The "between" operation's description.

Type:

String

Default Value: 'Between'

contains

The "contains" operation's description.

Type:

String

Default Value: 'Contains'

endsWith

The "endswith" operation's description.

Type:

String

Default Value: 'Ends with'

equal

The "=" operation's description.

Type:

String

Default Value: 'Equals'

greaterThan

The ">" operation's description.

Type:

String

Default Value: 'Greater than'

greaterThanOrEqual

The ">=" operation's description.

Type:

String

Default Value: 'Greater than or equal to'

isBlank

The "isblank" operation's description.

Type:

String

Default Value: 'Is blank'

isNotBlank

The "isnotblank" operation's description.

Type:

String

Default Value: 'Is not blank'

lessThan

The "<" operation's description.

Type:

String

Default Value: 'Less than'

lessThanOrEqual

The "<=" operation's description.

Type:

String

Default Value: 'Less than or equal to'

notContains

The "notcontains" operation's description.

Type:

String

Default Value: 'Does not contain'

notEqual

The "<>" operation's description.

Type:

String

Default Value: 'Does not equal'

startsWith

The "startswith" operation's description.

Type:

String

Default Value: 'Starts with'