JavaScript/jQuery Gantt - headerFilter
Type:
The header filter allows users to filter values in an individual column. The header filter is a popup window that contains all unique values of a column. A click on the filter icon invokes the header filter.
Set the headerFilter.visible property to true to display filter icons for all columns. To hide the filter icon for an individual column, set the column’s allowHeaderFiltering property to false.
index.js
- $(function() {
- $("#gantt").dxGantt({
- headerFilter: {
- visible: true,
- width: 280,
- height: 350,
- searchTimeout: 800
- },
- // ...
- });
- });
See Also
Feedback