afterHide
fires after a window is hidden
afterHide: (position: object, events?: Event) => 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
Example
dhxWindow.events.on("afterHide", function(position, events){
console.log("A window is hidden", events);
});
Related sample: Window. Events
Note, the event fires in 2 cases:
Change log:
The position and events parameters have been added in v7.0.