I have a kendo DateTimePicker plugin (open source) in which it shows times from 12 AM to 11:30 PM. I was wondering, if on clicking the time button, I could start the list at 7:30, instead of the first item of the list at 12:00 AM? Is there a way I can have an initial value not at the first item of list, when no time has been selected?
My default registration:
$("#control").kendoDateTimePicker({
format: "MM/dd/yyyy hh:mm tt",
min: new Date(1900, 1, 1)
});