New to Kendo UI for jQuery? Download free 30-day trial

Localization

The DatePicker 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 widget is initialized and include the desired culture in the settings of the widget.

  <script src="https://kendo.cdn.telerik.com/2024.1.130/js/cultures/kendo.culture.de-DE.min.js"></script>
    <input id="datepicker" />
    <script>
      $("#datepicker").kendoDatePicker({
        culture:"de-DE",
        value: new Date()
      });
    </script>

See Also

In this article