max Date
(default: Date(2099, 11, 31))
Specifies the maximum date, which the calendar can show.
Example - specify the maximum date
<div id="daterangepicker"></div>
<script>
$("#daterangepicker").kendoDateRangePicker({
max: new Date() // sets max date to today's date
});
</script>