IE windowed control (ActiveX object) overlaps dhtmlxWindow

Hello,

We have a parent window, half of which loads an ActiveX object and also a button which opens a dhtmlx window. Part of the dhtmlx window is blocked by the ActiveX object. Any solutions? Thank you!

Hi

please attach your demo and provide steps to reproduce

Hello,

I need to correct my previous question. Only border of the opened dhtmlxwindow is blocked. To see the problem, click “open” button and try to move the dhtmlxwindow over onto the red box. Please use the code below:

<!doctype html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge"/>
<link rel="stylesheet" type="text/css" href="dhtmlx.css"/>
<script src="dhtmlx.js"></script></head>
<body onload="init()" onunload="unloadDHXWindows();">
<script>
var dhxWins;
function init() {
  dhxWins = new dhtmlXWindows();
}
function createWindow() {
  var transitionWindow = dhxWins.createWindow("test", 500, 500,500, 200);
  transitionWindow.centerOnScreen();
  transitionWindow.attachURL("http://dhtmlx.com");
}
function unloadDHXWindows() {
  if (dhxWins != null && dhxWins.unload != null) {
    dhxWins.unload();
    dhxWins = null;
  }
}
</script>
<button id="open" onclick="createWindow()">Open</button>
<object height="500" width="600" style="border:1px solid red" classid="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2" onblur="window.top.bib = this"><param name="Location" value="http://wikipedia.com"></object>
</body>
</html>

Hi

please attach screenshot, also provide dhx4 version and browser version.

See attached file.
I think the dhtmlxwindow usually located under activeX control.


Hi

what exact version of IE?