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
65
UltraWebaMenu Hover Problem
posted

 I have an UltraWebaMenu. Bu the menu items are very very hard to select.  I have to hover over the far right edge before the item is highlighted and lets me select it. But the child/sub menus are getting selected as soon as I hover over the item. I don't understand what is the problem. All the properties are same for both Parent and Child menus. Here is my code sample. Please help me.

 

 <ignav:UltraWebMenu id="mnu_RightPane" runat="server" Width="126px" Height="116px" WebMenuStyle="XPClient"     WebMenuTarget="PopupMenu" TopItemSpacing="Compact" AutoPostBack="true" OnMenuItemClicked="mnu_RightPane_Click" >
       
        <Items>           
            <ignav:Item  Text="View" >           
                <Items>
                    <ignav:Item Text="Thumbnail"></ignav:Item>
                    <ignav:Item Text="List" ></ignav:Item>
                    <ignav:Item Text="Details" ></ignav:Item>
                </Items>               
            </ignav:Item>
           
            <ignav:Item Text="Create Folder"></ignav:Item>

        </Items>       
       
    </ignav:UltraWebMenu>