beforeHide
fires before a window is hidden
beforeHide: (position: object, e?: Event) => boolean | void;
Parameters:
position: object- an object with coordinates of the window's position. The parameter contains two attributes:left: number- the left coordinate of the window's position (in pixels)top: number- the top coordinate of the window's position (in pixels)
events: Event- a native event object
Returns:
Return true to hide a window, false to block hiding a window.
Example
dhxWindow.events.on("beforeHide", function(position, events){
console.log("A window will be hidden", events);
return true;
});
Related sample: Window. Events
Note, the event fires in 2 cases:
Change log:
The position and events parameters have been added in v7.0.