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.
This is what works in ASP.NET CORE, MVC 6 :
success: function(events) { $('#calendar').fullCalendar('rerenderEvents'); $('#calendar').fullCalendar('refetchEvents'); }
while this was working in ASP.NET MVC 5:
success: function(events) { $('#calendar').fullCalendar('refetchEvents'); }