A plugin that manages the filtering state.
Use the following statement to import the plugin:
import { DxFilteringState } from '@devexpress/dx-vue-grid';
none
Name | Type | Default | Description |
---|---|---|---|
filters | Array<Filter> | Specifies the applied filters. | |
columnFilteringEnabled? | boolean | true | Specifies whether filtering is enabled for all columns. |
columnExtensions? | Array<DxFilteringState.ColumnExtension> | Additional column properties that the plugin can handle. |
Name | Type | Default | Description |
---|---|---|---|
update:filters? | (filters: Array<Filter>) => void | Handles filter changes. |
Describes a filter.
Field | Type | Description |
---|---|---|
columnName | string | Specifies the name of a column whose value is used for filtering. |
operation? | FilterOperation | Specifies the operation name. The value is ‘contains’ if the operation name is not set. |
value? | string | Specifies the filter value. |
Describes a filter operation. Accepts one of the built-in operations or a custom string.
Type: string
Built-in operations: contains
, notContains
, startsWith
, endsWith
, equal
, notEqual
, greaterThan
, graterThenOrEqual
, lessThan
, lessThanOrEqual
Describes additional column properties that the plugin can handle.
Field | Type | Description |
---|---|---|
columnName | string | The name of a column to extend. |
filteringEnabled | boolean | Specifies whether filtering is enabled for a column. |
Name | Plugin | Type | Description |
---|---|---|---|
filters | Getter | Array<Filter> | The applied filter |
filterExpression | Getter | FilterExpression | Filter | The applied filter expressions. |
Name | Plugin | Type | Description |
---|---|---|---|
filterExpression | Getter | FilterExpression | Filter | The applied filter expressions. |
isColumnFilteringEnabled | Getter | (columnName: string) => boolean | A function used to define if filtering by a column is enabled. |
changeColumnFilter | Action | ({ columnName: string, config: object }) => void | Adds, changes or removes a filter. Pass null to the config argument to remove the specified column’s filter. |