Check documentation for the latest version of dhtmlxSuite onMoveCancel DHTMLX Docs

onMoveCancel

fires if moving was canceled (window hasn't changed its position)

void onMoveCancel(object win);
winobjectwindow instance

Example

myWins.attachEvent("onMoveCancel", function(win){
    // your code here
});

Related samples

Details

win is dhtmlXWindowsCell instance, please check dhtmlXWindowsCell API for details

Change log

added in version 4.2

Back to top