max Date
(default: "00:00")
Specifies the end value in the popup list.
Example - specify a maximum selectable time
<input id="timepicker" />
<script>
$("#timepicker").kendoTimePicker({
max: new Date(2000, 0, 1, 22, 0, 0) //date part is ignored
});
</script>
Example - render all available hours
<input id="timepicker" />
<script>
$("#timepicker").kendoTimePicker({
max: new Date(2000, 0, 1, 23, 30, 0) //date part is ignored
});
</script>