fires before window moving is started
win | dhtmlXWindowsCell | window instance |
boolean | "return true" - allows window moving to be started, "return false" - otherwise |
// attach global event, it will called for all windows
myWins.attachEvent("onBeforeMoveStart", function(win){
// your code here
return true; // allow window moving to be started
});
win is dhtmlXWindowsCell instance, please check dhtmlXWindowsCell API for details
added in version 4.2
Back to top