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

Selected Dates and Formats

The DateInput enables you to create a non-editable DateInput with a selected date.

The date will be displayed in a predefined format.

Open In Dojo
    <input id="dateInput" />

    <script>
      $(document).ready(function(){
        $("#dateInput").kendoDateInput({
          value: new Date(),
          format: "dd/MM/yyyy",
          readonly: true
        });
      });
    </script>