Skip to content Skip to sidebar Skip to footer

Fullcalendar Refetchevents Not Reloading Calendar

If an ajax call to create a new event succeeds, I would like to reload this pages fullcalendar. However, calling refetchEvents seems to have absolutely no effect - and watching the

Solution 1:

Try:

var mycal = $("#calendar)....init...

then in your .success:

mycal.fullCalendar('refetchEvents');

Post a Comment for "Fullcalendar Refetchevents Not Reloading Calendar"