undocks content from layout cell to the window
x | number | optional, window x-position |
y | number | optional, window y-position |
width | number | optional, window width |
height | number | optional, window height |
myLayout.cells(id).undock();
// or
myLayout.cells(id).undock(10, 10, 320, 200);
Note, to use the method you need to have dhtmlxWindows's source files included on the page.
params: x, y, width, height - added in version 4.0
Back to top