Box
Map
API
Row
A newer version of this page is available. Switch to the current version.

jQuery TreeList - filterRow.operationDescriptions

Specifies descriptions for filter operations on the filter list.

Type:

Object

The following code sample illustrates how to set this property:

jQuery
index.js
$(function() {
    $("#treeListContainer").dxTreeList({
        filterRow: {
            // ...
            operationDescriptions: {
                startsWith: "Begins with"
            }
        }
    });
});
Angular
app.component.html
app.module.ts
<dx-tree-list ... >
    <dxo-filter-row ... >
        <dxo-operation-descriptions
            startsWith="Begins with">
        </dxo-operation-descriptions>
    </dxo-filter-row>
</dx-tree-list>
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';

import { DxTreeListModule } from 'devextreme-angular';

@NgModule({
    declarations: [
        AppComponent
    ],
    imports: [
        BrowserModule,
        DxTreeListModule
    ],
    providers: [ ],
    bootstrap: [AppComponent]
})
export class AppModule { }
Vue
App.vue
<template>
    <DxTreeList ... >
        <DxFilterRow ... >
            <DxOperationDescriptions
                starts-with="Begins with"
            />
        </DxFilterRow>
    </DxTreeList>
</template>

<script>
import 'devextreme/dist/css/dx.light.css';

import DxTreeList, {
    DxFilterRow,
    DxOperationDescriptions
} from 'devextreme-vue/tree-list';

export default {
    components: {
        DxTreeList,
        DxFilterRow,
        DxOperationDescriptions
    },
    // ...
}
</script>
React
App.js
import 'devextreme/dist/css/dx.light.css';

import TreeList, {
    FilterRow,
    OperationDescriptions
} from 'devextreme-react/tree-list';

export default function App() {
    return (
        <TreeList ... >
            <FilterRow ... >
                <OperationDescriptions
                    startsWith="Begins with"
                />
            </FilterRow>
        </TreeList>
    );
}
See Also

between

A description for the "between" operation.

Type:

String

Default Value: 'Between'

contains

A description for the "contains" operation.

Type:

String

Default Value: 'Contains'

endsWith

A description for the "endswith" operation.

Type:

String

Default Value: 'Ends with'

equal

A description for the "=" operation.

Type:

String

Default Value: 'Equals'

greaterThan

A description for the ">" operation.

Type:

String

Default Value: 'Greater than'

greaterThanOrEqual

A description for the ">=" operation.

Type:

String

Default Value: 'Greater than or equal to'

lessThan

A description for the "<" operation.

Type:

String

Default Value: 'Less than'

lessThanOrEqual

A description for the "<=" operation.

Type:

String

Default Value: 'Less than or equal to'

notContains

A description for the "notcontains" operation.

Type:

String

Default Value: 'Does not contain'

notEqual

A description for the "<>" operation.

Type:

String

Default Value: 'Does not equal'

startsWith

A description for the "startswith" operation.

Type:

String

Default Value: 'Starts with'