Comments 2selvaraj started the conversationSeptember 29, 2016 at 8:53amhow to get the end date when dragging the calendar event?[deleted] repliedSeptember 29, 2016 at 2:59pmHi,The event date can be fetched in this form: $('#calendar').fullCalendar({ events: [ // events here ], editable: true, eventDrop: function(event, delta, revertFunc) { alert(event.title + " was dropped on " + event.start.format()); if (!confirm("Are you sure about this change?")) { revertFunc(); } }});When the event is drop in the specific date, you can get it with event object event.start.format()Hopefully this will help you. Sign in to reply ...
how to get the end date when dragging the calendar event?
Hi,
The event date can be fetched in this form:
When the event is drop in the specific date, you can get it with event object event.start.format()
Hopefully this will help you.