New to Telerik UI for ASP.NET MVCStart a free 30-day trial

Items Binding

Updated on Oct 24, 2025

The Menu enables you to declare its items and the properties of each item within the helper declaration.

The following example demonstrates how to configure the Menu items using the Items() configuration.

Razor
@(Html.Kendo().Menu()
    .Name("menu") // The name of the Menu is mandatory. It specifies the "id" attribute of Menu's HTML element.
    .Items(items =>
    {
        items.Add().Text("Home").Action("Index", "Home");
        items.Add().Text("About").Action("About", "Home");
    })
)

See Also

In this article
See Also
Not finding the help you need?
Contact Support