max
Gets/Sets the max value of the DateInput.
Parameters
value Date|String
The max date to set.
Returns
Date
The max value of the DateInput.
Example - get the max value of the DateInput
<input id="dateinput" />
<script>
$("#dateinput").kendoDateInput();
var dateinput = $("#dateinput").data("kendoDateInput");
var max = dateinput.max();
/* The result can be observed in the DevTools(F12) console of the browser. */
console.log(max);
</script>
Example - set the max value of the DateInput
<input id="dateinput" />
<script>
$("#dateinput").kendoDateInput();
var dateinput = $("#dateinput").data("kendoDateInput");
dateinput.max(new Date(2100, 0, 1));
</script>