Is there a function to tile the popup windows in one layout.cells(‘a’)?
unfortunately not, but you can:
var x = 10;
var y = 20;
dhxWins.forEachWindow(function(win){
win.setPosition(x, y);
x += someValue;
y += someValue;
});
Thanks very much!
What the code you said is cascade, it is easy to implement.