min

Gets/Sets the min value of the calendar.

Parameters

value Date|String

The min date to set.

Returns

Date The min value of the calendar.

Example - get the min value of the calendar

<div id="calendar"></div>
<script>
    $("#calendar").kendoCalendar();

    var calendar = $("#calendar").data("kendoCalendar");

    var min = calendar.min();
</script>

Example - set the min value of the calendar

<div id="calendar"></div>
<script>
    $("#calendar").kendoCalendar();

    var calendar = $("#calendar").data("kendoCalendar");

    calendar.min(new Date(1900, 0, 1));
</script>
In this article