New to Telerik UI for ASP.NET MVC? Start a free 30-day trial
Keyboard Navigation
Updated on Oct 28, 2025
As of R1 2021, the Telerik UI TileLayout for aspnet-mvc provides keyboard navigation.
For a complete example, refer to the demo on using the keyboard navigation of the TileLayout.
The TileLayout supports its keyboard navigation functionality through the navigatable option. When set to true, you can initially focus the widget and modify the dimensions and order of its containers. The navigation occurs at a container-level.
The following example demonstrates how to enable the key navigation in the TileLayout.
Razor
@(Html.Kendo().TileLayout()
.Name("tilelayout")
.Navigatable(true)
// options omitted for brevity
)