ActiveX Control Modal Dialog Box

I use jQuery modal dialogs (jQuery UI) for modal popups.It works fine, until recently we installed the activex plugin. Now that the plug-in is activated, this pop-up window goes beyond the plugin. Is there a way to show a modal dialog on top of the activex plugin?

Browsers: IE7, IE8

+5
source share
2 answers

I do not have an activex plugin to test, but I believe that if you can hide the plugin behind an iframe. When you show your modal popup, create an empty iframe. Give it the same size as the popup, and show it in the same place, but with a lower one z-index. The iframe should display above the activex plugin, and your popup should display above the iframe.

I can verify that this method works to mask blocks <select />in IE6. I myself have not tested it with ActiveX controls, but Google tells me that it should work.

+3
source

. jQuery UI bgiframe, z-index iframe. true, .

+1

All Articles