min Date(default: Date(1900, 0, 1))

    Specifies the minimum date that the calendar can show.

    Example - specify the minimum date

    Open In Dojo
    <input id="datetimepicker" />
    <script>
    $("#datetimepicker").kendoDateTimePicker({
        min: new Date(2011, 0, 1, 8, 0, 0)
    });
    </script>
    In this article