It’s possible to return in the window, the window ID?
This is a part of the code that create the Windows:
dhxToolbar7 = tabbar.cells("c9").attachToolbar();
dhxToolbar7.setIconsPath("dhtmlx/dhtmlxMenu/samples/common/imgs/");
dhxToolbar7.addButton("New", 1, "Crea nuovo operato...", "page_white_add.png", "page_white_add.png");
dhxToolbar7.attachEvent("onClick", function(id) {
if(id=="New") {
createWindow('Operato_add.php?CID=<? echo $_GET["CID"]; ?>','Aggiungi operato','500','372','yes');
w1.allowResize();
}
});
Now in the opened page i want too display that this is the window with ID w1, is this possible?