Problem on closing window over lightbox!

Hello,
I have a problem: I create a window over lightbox, where user can check some value.
On closing window, i can’t change value on lightbox, it appears is blocked!
I create in this way:

var width = 500; var height = 500;
var win = dhxWins.createWindow(“id_window”, (screen.width/2)-(width/2), (screen.height/2)-(height/2), width, height);
dhxWins.setViewport(0, 0, 2000, 2000, document.body);
dhxWins.vp.style.zIndex = “20000”;

And close in this way:

dhxWins.window(“id_window”).close();

What is wrong?
Thanks

Hi

Could you please provide us complete demo including all correspondnig js/css files?
Please also add information regarding current and expected behaviour.

Here is a small guide how to make a complete demo:
docs.dhtmlx.com/tutorials__auxil … pport.html

If you’re using PRO or ENT edition, please send your demo to support@dhtmlx.com

I have resolved, adding this:

dhxWins.setViewport(0, 0, 0, 0, document.body);
dhxWins.vp.style.zIndex = “0”;

probably adding window over lightbox, remove control, and add these two lines,
return control to lightbox.

that’s good!