I\'m loading dynamic events from a JSON source, but each time I click a different room, I want to clear all the events prior to fetching the new ones
I have attempte
You are absolutely spot on, I'm having a particularly slow day on picking things up!
var eventSources = calendar.getEventSources(); var len = eventSources.length; for (var i = 0; i < len; i++) { eventSources[i].remove(); }
Was the solution, as you suggested @ADyson