move
fires on moving a window
move: (position: IPosition, oldPosition: IPosition, side: IDirectionConfig) => void;
Parameters:
position: object
- an object with the new position of the windowoldPosition: object
- an object with the previous position of the windowside: object
- an object that specifies the direction of resizing
Example
dhxWindow.events.on("move", function(position, oldPosition, side) {
console.log("The window is moved to " + position.left, position.top)
});
Related sample: Window. Events
The position/oldPosition 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)
The side object contains four directions:
- left - (boolean) optional, the left direction
- right - (boolean) optional, the right direction
- top - (boolean) optional, the top direction
- bottom - (boolean) optional, the bottom direction