I use < DHTMLX > to build up a system.
I use < windows > to show each function and display.
I want to open more windows at the same time. I want to open next windows but not close pervious windows.
I want to ask this method ?
Thanks for your help !
I use < DHTMLX > to build up a system.
I use < windows > to show each function and display.
I want to open more windows at the same time. I want to open next windows but not close pervious windows.
I want to ask this method ?
Thanks for your help !
You can use something like this:
dhxWins = new dhtmlXWindows();
dhxWins.enableAutoViewport(false);
dhxWins.attachViewportTo("gridbox");
dhxWins.setImagePath("../dhtmlxWindows/codebase/");
//open popup window
var w = 300;
var h = 200;
var x = 100;
var y = 100;
for (var p = 0; p < 11; p++){
var id = "userWin" + p;
dhxWins.createWindow(id, x, y, w, h);
dhxWins.window(id).setText(id);
x = x + 8;
y = y + 6;
}