Check documentation for the latest version of dhtmlxSuite onBeforeMoveStart DHTMLX Docs

onBeforeMoveStart

fires before window moving is started

boolean onBeforeMoveStart(object win);
winobjectthe window instance
boolean"return true" - allows window moving to be started, "return false" - otherwise

Example

w1.attachEvent("onBeforeMoveStart", function(win){
    // your code here
    return true; // allow window moving to be started
});

Related samples

Change log

added in version 4.2

Back to top