The following code sample illustrates how to set this property:
- $(function() {
- $("#filterBuilderContainer").dxFilterBuilder({
- // ...
- groupOperationDescriptions: {
- and: "Plus"
- }
- });
- });
- <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