JavaScript/jQuery PivotGrid - headerFilter.search
Type:
editorOptions
Type:
any
Default Value: {}
See the TextBox Configuration topic for information about properties you can specify in this object.
JavaScript
- $(function(){
- $("#pivotGrid").dxPivotGrid({
- // ...
- headerFilter: {
- // ...
- search: {
- editorOptions: {
- placeholder: 'Search value',
- mode: 'text',
- onValueChanged: (e) => {
- // handle the value change here
- }
- },
- // ...
- },
- },
- })
- });
timeout
Specifies a timeout, in milliseconds, during which a user may continue to modify the search value without starting the search operation.
Type:
Default Value: 500
Feedback