Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeUsing DNN Platf...Using DNN Platf...Skins, Themes, ...Skins, Themes, ...Menu Error dnn:NAV DNN 4.9.4 in Internet ExplorerMenu Error dnn:NAV DNN 4.9.4 in Internet Explorer
Previous
 
Next
New Post
8/4/2009 12:14 PM
 

Hi I have got a specific error in the menu in dnn:NAV DNN 4.9.4 in Internet Explorer ... it works fine in firefox but not in Internet Explorer. The menu seems to work fine in internet Explorer BUT when trying to click on a menu option wich has submenues unfolding dynamically (javascript)  then you can not click the mother menu option and view the mother page ...any one else having this problem?

 
New Post
8/5/2009 3:53 AM
 

did you set the root page to redirect to another, possibly the first page on the next level?

 
New Post
8/7/2009 12:40 PM
 

Nope nothing like that ... it works fine in firefox so there is a problem with internet Explorer together with dotnetnuke native skin and mother nodes in a menu when the submenus are visible

 
New Post
8/8/2009 8:26 AM
 

Right, you already said it worked in FF....

Do you have the example online somewhere?

 
New Post
10/6/2009 3:02 PM
 

The problem seems to be with the dnn.dom.positioning.js file.

on line 246 the js code states :-

        var iIndex = dnn.dom.getCurrentStyle(oCont, 'zIndex');
        if (iIndex == null || iIndex == 0)
            oCont.style.zIndex = 1;
        oIFR.style.zIndex=iIndex-1;
        oIFR.style.display="block";

 

as iIndex can contain the value "auto", subtracting 1 from it causes IE to stop the js execution whereas FF will continue

 

To solve the problem I changed this to

         var iIndex = dnn.dom.getCurrentStyle(oCont, 'zIndex');
        if (iIndex == null || iIndex == 0)
            oCont.style.zIndex = 1;

        if (iIndex == 'auto')
        {
            oIFR.style.zIndex=1;
        }
        else
        {
            oIFR.style.zIndex=iIndex-1;
        }


        oIFR.style.display="block";

 

although someone else may want to come up with a more elegant solution than simply making iIndex 1 when it has been set to auto ?

 

 

 

 
Previous
 
Next
HomeHomeUsing DNN Platf...Using DNN Platf...Skins, Themes, ...Skins, Themes, ...Menu Error dnn:NAV DNN 4.9.4 in Internet ExplorerMenu Error dnn:NAV DNN 4.9.4 in Internet Explorer


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out