Hello,
I have been experimenting with dhtmlxSuite and I really love it. I have a web application that uses other frameworks and I am using dhtmlxWindows in it.
When I open dhtmlxWindows it shows behind the other objects - Is there any way I can set the next highest z-index
I have tried - but did not work
dhxWins.window(id).bringToTop();
Please advise.
Thanks,
Kris
Hello,
window z-index is set directly in the dhtmlxwindow.js, line 1464.
To increase z-index, please, locate the line
this.zIndexStep = 50;
and try to set a new z-index:
this.zIndexStep = 1000;
Thanks! that worked.
It would be helpful for future to make the z-index property accessible when creating windows.