Button on Lightbox onclick should open new window on top.

Hi,

I am having custom field section on Lightbox. In that section i am having button, onclick of button i need to open new window on top. For this i am using dhtmlxwindow. But the problem is window opens in background and since lightbox is modal not able to get into new window.

Following is code for opening new window on button click.

dhxWins = new dhtmlXWindows();
var stWid = screen.availWidth-50;
var stHeigh = screen.availHeight-50;
var win = dhxWins.createWindow(‘ID’, 0, 0, stWid, stHeigh);
dhxWins.setSkin(“dhx_blue”);
win.setText(“Incident Details Module”);
document.title = “IIM: Incident Details”;
dhxWins.window(‘ID’).attachURL(“newIncidentDetailsModulePagect.aspx?IncidentNo=” + document.getElementById(“txtIncidentId”).value + “”);
dhxWins.window(‘ID’).setModal(true);
dhxWins.window(‘ID’).center();

Please suggest how can i have new window on top from lightbox. Thanks in advance.

You can try to use

dhxWins = new dhtmlXWindows(); dhxWins.zIndexStep = 10100; //set initial z-index value;

Hi,

I have tried setting intial zindex but now when i click View button on Lightbox page is loaded in same browser window instead of window popup on existing page. either i should be able to open new browser window or popup window on top of lightbox. Please suggest.