New to Telerik UI for ASP.NET Core? Download 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.

    @(Html.Kendo().DateInput()
        .Name("dateinput")
        .HtmlAttributes(new { accesskey = "w" }) //Access key + "w" will focus the DateInput
    )
    <kendo-dateinput name="dateinput" accesskey="w">
    </kendo-dateinput>

For a complete example, refer to the demo on keyboard navigation of the DateInput.

See Also

In this article