This question is locked. New answers and comments are not allowed.
Greetings,
i am facing strange behavior with telerik Menu,
while i am testing how to use the menu extension i face the following problem
if i run this example in chrome browser and when i hover over tools , i see the sub menus displayed horizontally
while in firefox or IE i see the sub menus displaying vertically
how to control the behavior of menu sub menus?
thanks in advance
regards
i am facing strange behavior with telerik Menu,
while i am testing how to use the menu extension i face the following problem
@(Html.Telerik().Menu()
.Name("menu")
.Orientation(MenuOrientation.Horizontal)
.Items(menu =>
{
menu.Add().Text("Home").Action("Index", "Home"); menu.Add() .Text("Tools") .Visible(User.Identity.IsAuthenticated) .Items(items => { items.Add() .Text("Inventory") .Action("Details", "Inventory"); items.Add() .Text("Contracts") .Action("Index", "Contract"); });
}))if i run this example in chrome browser and when i hover over tools , i see the sub menus displayed horizontally
while in firefox or IE i see the sub menus displaying vertically
how to control the behavior of menu sub menus?
thanks in advance
regards
