fires before the user starts to drag the grid's border to resize the grid
old_width | number | the initial grid's width |
boolean | defines whether the default action of the event will be triggered (true) or canceled (false) |
Available only in PRO Edition
// return false to discard the resize action
gantt.attachEvent("onGridResizeStart", function(old_width){
gantt.message("Start grid resizing");
return true;
});
This functionality is available in the PRO edition only.
The event is blockable. Returning false won't allow grid resizing.