afterHide
fires after a window is hidden
afterHide: (position: IPosition, events?: Event) => void;
Parameters:
position: object
- an object with coordinates of the window's positionevents: Event
- a native event object
Example
dhxWindow.events.on("afterHide", function(position, events){
console.log("A window is hidden", events);
});
Related sample: Window. Events
The position 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)
When the user closes the window by clicking on the Close icon (when the closable option is enabled), the native event object will be passed into the second argument.
Note, the event fires in 2 cases:
Change log:
The position and events parameters have been added in v7.0.