New to Telerik UI for ASP.NET Core? Start a free 30-day trial
Keyboard Navigation
The keyboard navigation of the DateInput is always available.
To focus the widget, use the key combination of Access key and the key specified through the HtmlAttributes
method.
Razor
@(Html.Kendo().DateInput()
.Name("dateinput")
.HtmlAttributes(new { accesskey = "w" }) //Access key + "w" will focus the DateInput
)
For a complete example, refer to the demo on keyboard navigation of the DateInput.