New to Kendo UI for jQueryStart a free 30-day trial

Min

methods

Gets/Sets the min value of the DateInput.

Parameters:valueDate|String

The min date to set.

Returns:Date

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>
<input id="dateinput" />
<script>
$("#dateinput").kendoDateInput();

var dateinput = $("#dateinput").data("kendoDateInput");

dateinput.min(new Date(2000, 0, 1));
</script>
Not finding the help you need?
Contact Support