DxSearchPanel Plugin Reference
A plugin that renders the Search Panel.
Import
Use the following statement to import a plugin with embedded theme components:
import { DxSearchPanel } from '@devexpress/dx-vue-grid-bootstrap4';
If you want to use custom components, you can import the themeless plugin:
import { DxSearchPanel } from '@devexpress/dx-vue-grid';
User Reference
Dependencies
Properties
Component Types
Props
Field |
Type |
Description |
value |
string |
Specifies the search value. |
getMessage |
(messageKey: string) => string |
Returns a specified localization message. |
Events
Field |
Type |
Description |
valueChange |
(value: string) => void |
Handles the search value changes. |
Localization Messages
Field |
Type |
Default |
Description |
searchPlaceholder? |
string |
‘Search…’ |
The search editor placeholder text. |
Plugin Components
Name |
Type |
Description |
DxSearchPanel.components.DxInput |
DxSearchPanel.DxInput |
A component that renders the Search Panel input element. |
Plugin Developer Reference
Imports
Name |
Plugin |
Type |
Description |
searchValue |
Getter |
string |
The applied search value. |
changeSearchValue |
Action |
(value:string) => void |
Fires the update:value event with the corresponding value and changes the search value state. |
Exports
none