reorder_grid_columns
enables the possibility to reorder grid columns by drag and drop
boolean reorder_grid_columns;
Example
gantt.config.reorder_grid_columns = true;
gantt.init("gantt_here");
Default value:
false
Related samples
Details
This functionality works both in grid and resource view.
The property provides two CSS classes:
- .gantt_column_drag_marker - the CSS class of the marker that specifies the position the dragged column will be placed to
- .gantt_grid_head_cell_dragged - the CSS class of the dragged column
Back to top