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!