Angular FilterBuilder - filterOperationDescriptions

Specifies filter operation descriptions.

Selector: dxo-filter-operation-descriptions
Type:

Object

The following code sample illustrates how to set this property:

app.component.html
app.module.ts
  • <dx-filter-builder ... >
  • <dxo-filter-operation-descriptions
  • startsWith="Begins with">
  • </dxo-filter-operation-descriptions>
  • </dx-filter-builder>
  • import { BrowserModule } from '@angular/platform-browser';
  • import { NgModule } from '@angular/core';
  • import { AppComponent } from './app.component';
  •  
  • import { DxFilterBuilderModule } from 'devextreme-angular';
  •  
  • @NgModule({
  • declarations: [
  • AppComponent
  • ],
  • imports: [
  • BrowserModule,
  • DxFilterBuilderModule
  • ],
  • providers: [ ],
  • bootstrap: [AppComponent]
  • })
  • export class AppModule { }
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'