Is it possible to set a default time in the datetime picker, I have an event planner, and merting times usually start at 6pm, so it would be a useful feature.
This question has an accepted answers - jump to answer
Ah, worked out a way
def: function () { d = new Date(); d.setHours(18,0); return d; }
Answers
Ah, worked out a way