Start and End Time
The DateTimePicker enables you to set the start and end time of the built-in TimePicker.
To define the desired earliest and latest available time in the built-in TimePicker, use the startTime
and endTime
options.
Only the time part of the provided Date object is taken into account.
<input id="datetimepicker" />
<script>
$("#datetimepicker").kendoDateTimePicker({
startTime: new Date(2023,1,3,8,30,0),
endTime: new Date(2023,1,3,17,00,0)
});
</script>