XML Menu Problem

  • Thread starter Thread starter Adnan Mousa
  • Start date Start date
A

Adnan Mousa

Hi All,

We are using a JavaScript drop down menu and we have a problem with it.
Below that menu on the aspx form we have an iFrame that we use to display
some html files, and sometimes .doc files. The problem is that when a DOC
file is displayed the menu is not displayed properly as if it is hidden
behind the iFrame.

Does anyone know how to solve this issue?

Thanks,

Adnan
 
Hi,
We are using a JavaScript drop down menu and we have a problem with it.
Below that menu on the aspx form we have an iFrame that we use to display
some html files, and sometimes .doc files. The problem is that when a DOC
file is displayed the menu is not displayed properly as if it is hidden
behind the iFrame.

Does anyone know how to solve this issue?

Do you use PopupWindow or DIV objects to show menu?
______________________________
With best wishes, Arthur Nesterovsky
Please visit my home page:
http://www.nesterovsky-bros.com
 
This might be caused by the fact that loading doc files will cause Microsoft
Word to load up within the browser window, and probably force itself to the
top of the z-index, similar to the bug with dropdowns and form <select>
elements which force themself to the top.

Once way to possibly get around this would be to hide the IFrame when the
mouse is over a DHTML menu and a DOC file is being viewed. Alternatively,
you could make doc files open in a popup, which would be a much easier
solution.

Hope this helps,

Mun
 
Back
Top