Show detail form when creating a new event

Hi there,

when the user creates a new event, I would like to show the detail directly.

I tried this, but it doesn’t work well when a event is created with drag:

scheduler.attachEvent("onEventCreated", function(event_id,event_object){ scheduler.showLightBox(event_id); });

I’ve ended up to disable dragging and only allow to create a new event on click, but that’s not a really cool solution.

Any way how could I do this?
Thanks!

Try to use

scheduler.config.details_on_create = true;

Thanks Stanislav and sorry, I’ll take a clother look to the docs next time :blush: