I am trying to have fullCalendar reflect changes made to a database via AJAX. The problem is that it won\'t update the calendar on screen after a successful AJAX call.
What works for me:
success: function(text) { setTimeout(function(){ $("#calendar").fullCalendar("rerenderEvents"); },50); }
If I do it directly without timeout it does not work, probable due to the $element.fullCalendar variable not yet set completely?