JavaScript/jQuery Gantt - headerFilter.search
editorOptions
See the TextBox Configuration topic for information about properties you can specify in this object.
- $(function(){
- $("#gantt").dxGantt({
- // ...
- columns: [
- {
- // ...
- headerFilter: {
- // ...
- search: {
- editorOptions: {
- placeholder: 'Search city or state',
- 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.