focusTime Date(default: null)

Specifies a time that will be focused inside the popup when opened.

Example - specify a focus time

<input id="timepicker" />
<script>
$("#timepicker").kendoTimePicker({
    focusTime: new Date(2023, 10, 4, 8, 0, 0) //date part is ignored
});
</script>
In this article