asp.net - Ajax modal popup loads behind the activex control -
One page has an active X control, as well as a button on which onclick opens an AJAX modal popup The problem I have is that whenever the button is clicked on AJAX then the activation is loaded behind the control and thus it is hidden. So I'm not able to use that control at all. I have not found the correct solution I tried a solution where the status of a browser check was removed from the AJAXLoite code. But no luck using Ajax Toolkit version 3.0.30512.1. I know there is any solution to solve this problem.
Any attempt to bring the DIV or any HTML element at the top of an Active X has no effect Does matter. An ActiveX always keeps on top even if it keeps a lot of life from an HTML element. The reason for this is that Explorer underlines its content. See
.
There are two types of controls: Windered and windowless elements, and they are rendered on different planes. Despite all the wishes of its container, all window elements tie themselves above all the windowless elements. However, the windowed elements adhere to the Z index attribute in relation to each other, such that the window elements follow the Z-index attribute in relation to each other.
All window elements are render on the same MSHTML plane, and drag the windowed element on different MSHTML aircraft. You can use z-index to manipulate elements on the same plane, but mix them with elements in different planes and can not match. You can rearrange the z-indexing of elements of each plane, but aircraft with windows always drag it to the top of the windowless plane.
The tag, in most cases, is the window. This is why it always keeps on top.
Comments
Post a Comment