dhtmlxwindow created windows casecading

hi,



i am creating 5 windows on a popup window, and i have diffecult arrange all 5 windows, is there any method in dhtmlx window which will show all open windows in casecading or minimize format ?


Hello,


you can try to use the following approach:


dhxWins.forEachWindow(function(win) {
win.park();


});



thanks, but Alex i want properly arrange cascade windows / Tile Windows Horizontally/ Tile Windows vertically (like windows) with in the popup window area. Is it possible using dhtmlx windows ?



Hello,


Unfortunately, dhtmlx windows component doesn’t. support cascade windows.

Possibly the following approach can be useful:

var x = 10;
var y = 20;
dhxWins.forEachWindow(function(win){
win.setPosition(x, y);
x += 10;
y += 20;
});