Angular FilterBuilder - groupOperationDescriptions

Specifies group operation descriptions.

Selector: dxo-group-operation-descriptions
Type:

Object

The following code sample illustrates how to set this property:

app.component.html
app.module.ts
  • <dx-filter-builder ... >
  • <dxo-group-operation-descriptions
  • and="Plus">
  • </dxo-group-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

and

The "and" operation's description.

Type:

String

Default Value: 'And'

notAnd

The "notand" operation's description.

Type:

String

Default Value: 'Not And'

notOr

The "notor" operation's description.

Type:

String

Default Value: 'Not Or'

or

The "or" operation's description.

Type:

String

Default Value: 'Or'