Separate inputs for date and for time

Hi all!

I’m using fully custom lightbox and I need to use separate fields for date and time. start_time is mapped to start time of event and when I create new event it is filled with correct value, but I don’t know how to fill start time when new event is created. Can you please suggest smth?

Thanks

Sorry but it is not clear in which moment of scheduler’s life cycle you need to set the start_time

Normally you can use onEventCreated handler to fill the details of newly created event

scheduler.attachEvent("onEventCreated", function(id,e){ scheduler.getEvent(id).start_time = "some value"; });