Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
770
Submenu not expanding
posted

Hello,

I am having problems getting my webdatamenu to work correctly. I have a webdatamenu on a .ascx page that is populated by the code behind page which is in VB.  The only code for the WDM on .ascx page is the following:

<ig:WebDataMenu ID="wdmModules" runat="server" Width="391px">
<GroupSettings Orientation="Horizontal" />
</ig:WebDataMenu>

On the code behind page, my code is setup in this format


wdmModules.Items.Add("ParentX")
Select Case
Case "Parent1"
wdmModules.Items(0).Items.Add("Child 1.1")
wdmModules.Items(0).Items.Add(
"Child 1.2")
wdmModules.Items(0).Items.Add(
"Child 1.3")
wdmModules.Items(0).Items.Add(
"Child 1.4")
Case "Parent2"
wdmModules.Items(1).Items.Add("Child 2.1")
wdmModules.Items(1).Items.Add(
"Child 2.2")
wdmModules.Items(1).Items.Add(
"Child 2.3")
End Select

I have the case statement because the add parent items tag is actually in a "with each" that adds the parent items one by one and then adds the appropriate children to it via the case statement. When the page loads, the parent items with submenus do not load properly. The parent items have an appearance of being selected and the submenus do not show up when  you rollover them. If I view source, the child items are there in the code, they just will not show. I have tried creating the WDM control on the .aspx page that it is going to be used on and I run into the same problem. I also created the items for the WDM using the "WebDataMenu Designer" and they still do not work. Is there something that could be on my page that disables the expanding submenus from working? Here is a picture of what the rendered non-working menu looks like.

The first two parent items have children but the next two do not. The menu for the children does not show at all by clicking, rollover, or anything.

When adding the WDM I have started from scratch several times and also copied working WDMs from a test project over but nothing seems to work. I would appreciate any help or recommendations, let me know if you need other information.

Thanks

Parents
No Data
Reply
  • 3726
    posted

    Hi,

    I've seen such behavior, under IE6 only, which is a bug.  Please contact developer support, to get help for resolving the issue.

    Thanks,

    Lubomir

     

Children
No Data