I want to update my json in fullcalendar, Here is what I am exactly trying to do. I have a JSON string which I am directly trying to feed in to the event objects in the full ca
You need to add the following lines:
$("#demo-calendar").fullCalendar('removeEvents');
$("#demo-calendar").fullCalendar('addEventSource', JSON, true);
When adding new events to the calendar they can disappear when switching months. To solve this add stick: true
to the event object being added to the scope.