New to Telerik UI for ASP.NET MVC? Download free 30-day trial

Localization

The DateTimePicker provides options for localizing its user interface by utilizing its Culture property.

To enable the desired culture, add a reference to the script file before the DateTimePicker is initialized and include the desired culture in the settings of the helper.

    <script src="https://kendo.cdn.telerik.com/2019.2.619/js/cultures/kendo.culture.de-DE.min.js"></script>

    @(Html.Kendo().DateTimePicker()
        .Name("dateTimePicker")
        .Culture("de-DE")
    )

See Also

In this article