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
1215
Submenus do not pop open when browsing over them
posted

If my WebDataMenu has a submenus, they do not pop open when I browse over them. Instead, I must click on submenus to make them open. This is not like Windows, where all cascading menus automatically open when you glide your mouse over them. (see image for an example)

Is there a setting to fix this?

Parents
  • 2095
    posted

    Hi raywhite,

    The default behavior of WebDataMenu is to expand sub-menus when hover on item. Try the simplest example:

    <ig:WebDataMenu ID="WebDataMenu1" runat="server" GroupSettings-Orientation="Vertical">
                <Items>
                    <ig:DataMenuItem>
                        <Template>Item1</Template>
                    </ig:DataMenuItem>
                    <ig:DataMenuItem>
                        <Template>Item2</Template>
                    </ig:DataMenuItem>
                    <ig:DataMenuItem >
                        <Template>Item3</Template>
                        <Items>
                            <ig:DataMenuItem><Template>1</Template></ig:DataMenuItem>
                            <ig:DataMenuItem><Template>2</Template></ig:DataMenuItem>
                            <ig:DataMenuItem><Template>3</Template></ig:DataMenuItem>
                            <ig:DataMenuItem><Template>4</Template></ig:DataMenuItem>
                        </Items>
                    </ig:DataMenuItem>
                </Items>
            </ig:WebDataMenu>
    As you can see, it will behave as it is described above.
    Could you please send me a code snippet or sample, where the issue is reproducible!
     
Reply Children