New to Kendo UI for jQuery? Download free 30-day trial

Selected Dates

The Calendar enables you to set its initially selected date and define the minimum and maximum dates it displays.

As a result, the Calendar will not navigate to a date that is earlier than the specified minimum date and will also restrict the navigation up to the maximum date you specified.

<div id="calendar"></div>

<script>
    $("#calendar").kendoCalendar({
        value: new Date(),
        min: new Date(1950, 0, 1),
        max: new Date(2049, 11, 31)
    });
</script>

See Also

In this article