Hi to all,
I created a new project web Telerik application MVC with Razor, I added a submenu in _Layout.cshtml
<div id="responsive-panel" class="navbar-left"> @(Html.Kendo().Menu() .Name("Menu") .Items(items => { items.Add().Text("Home").Action("Index", "Home", new { area = "" }); items.Add().Text("About").Action("About", "Home", new { area = "" }); items.Add().Text("Contact").Action("Contact", "Home", new { area = "" }); items.Add().Text("Configurazioni").Items(subitems => { subitems.Add().Text("Ruoli").Action("Index", "Roles", new { area = "" }); }); }) )</div>
But when a try to run, I see strange style for submenu, is it correct?
