Double clic creation can return date ?

Hello,

I’ve been looking for a way to get the date the user double clics on when creating an event from the calendar.
Im using distinct pages for the event edition/creation and the calendar and dont use lightbox ; currently, I can redirect the user correctly when he wants to edit an existing event (just using the event’s id), but I cant find a way to get the date he double clicked on when he wants to create a new event.

Is there any way to do this ?
Thanks a lot & great job on the plugin !

Hi, you can get date using getActionData method

scheduler.attachEvent("onDblClick", function (event_id, native_event_object){ var date = scheduler.getActionData(native_event_object).date; });

Excellent thank you so much !