New to Telerik UI for ASP.NET MVC? Start a free 30-day trial
Items Binding
The Menu enables you to manually define the properties of each item.
-
Make sure you followed all the steps from the introductory article on Telerik UI for ASP.NET MVC.
-
Create a new action method which renders the view.
Razorpublic ActionResult Index() { return View(); }
-
Add a simple Menu.
Razor@(Html.Kendo().Menu() .Name("menu") // The name of the Menu is mandatory. It specifies the "id" attribute of the Menu. .Items(items => { items.Add().Text("Item 1"); // Add an item with the text "Item1". items.Add().Text("Item 2"); // Add an item with the text "Item2". } )