max Date(default: Date(2099, 11, 31))

Specifies the maximum date which can be entered in the input.

Example - specify the maximum date

<input id="dateinput" />
<script>
$("#dateinput").kendoDateInput({
    max: new Date(2013, 0, 1) // sets max date to Jan 1st, 2013
});
</script>
In this article