Link to home
Start Free TrialLog in
Avatar of Dovberman
DovbermanFlag for United States of America

asked on

MenuItems do not expand

Only 2 mnenu items expand to 2nd level.
<tr>
        <td colspan="2" valign= "top" >
   
           <asp:menu id="NavigationMenu1" 
              staticdisplaylevels="2"
              staticsubmenuindent="2" 
              orientation="Horizontal"
              target="_blank"
              Font-names="Arial, Gill Sans"
              Width="600px"
              runat="server" Font-Size="12 px" StaticMenuItemStyle-ItemSpacing="2">

          <items>
            <asp:menuitem text="Home" tooltip="Home">
            
            <asp:menuitem text="Information" tooltip="General Information">
              <asp:menuitem text="Item 1" tooltip="Item 1"/>
              <asp:menuitem text="Item 2" tooltip="Item 2"/>
              <asp:menuitem text="Item 3" tooltip="Item 3"/>
            </asp:menuitem>
            
            <asp:menuitem text="Features" tooltip="Features">
              <asp:menuitem text="Item 1" tooltip="Item 1"/>
              <asp:menuitem text="Item 2" tooltip="Item 2">
                <asp:MenuItem Text="Subitem 1"/>
                <asp:menuitem Text="Subitem 2" />
              </asp:menuitem>
              <asp:menuitem text="Item 3" tooltip="Item 3"/>
            </asp:menuitem>
          </asp:menuitem>
          
          <asp:menuitem text="Membership" * This menu item does not expand. tooltip="Membership Information">
              <asp:menuitem text="Item 1" tooltip="Item 1"/>
              <asp:menuitem text="Item 2" tooltip="Item 2" />
              <asp:menuitem text="Item 3" tooltip="Item 3"/>
          </asp:menuitem>

        </items>
        </asp:menu>

         </td>  
      </tr>

Open in new window

MenuImage.jpg
ASKER CERTIFIED SOLUTION
Avatar of robasta
robasta
Flag of Zimbabwe image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of Dovberman

ASKER

Thank you