Skip to main content

onBeforeCollapse

Description

Before gantt exits the fullscreen mode and goes back to normal mode

onBeforeCollapse: () => boolean;

Returns

  • result - (boolean) - defines whether the default action of the event will be triggered (true) or canceled (false)

Example

gantt.attachEvent("onBeforeCollapse",function(){
// any custom logic here
return true;
});

Details

The event is blockable. Returning false will cancel further processing.

note

This event is defined in the fullscreen extension, so you need to activate the fullscreen plugin using the gantt.plugins method. Read the details in the Full Screen Mode article.