DxSearchState Plugin Reference
A plugin that manages the search state.
Import
Use the following statement to import the plugin:
import { DxSearchState } from '@devexpress/dx-vue-grid';
User Reference
Dependencies
none
Properties
Name |
Type |
Default |
Description |
value |
string |
|
Specifies the applied search value. |
Events
Name |
Type |
Default |
Description |
update:value? |
(value: string) => void |
|
Handles search value changes. |
Plugin Developer Reference
Imports
Name |
Plugin |
Type |
Description |
filterExpression |
Getter |
FilterExpression | Filter |
The applied filter expressions. |
columns |
Getter |
Array<Column> |
Grid columns. |
Exports
Name |
Plugin |
Type |
Description |
searchValue |
Getter |
string |
The applied search value. |
filterExpression |
Getter |
FilterExpression | Filter |
The applied filter expressions. |
changeSearchValue |
Action |
({ value: string }) => void |
Fires the update:value event with the corresponding value and changes the search value. |