format String(default: "M/d/yyyy")

Specifies the format, which is used to format the value of the DateInput displayed in the input. The format also will be used to parse the input.

Example - specify a custom date format

<input id="dateinput" />
<script>
$("#dateinput").kendoDateInput({
    format: "yyyy/MM/dd"
});
</script>
In this article