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