I have added a event source as such:
$('#calendar').fullCalendar('addEventSource', function(start, end, timezone, callback) {
getInactive(start, end, timezone, callback);
});
}
the events inside that have id:0
If I do .fullCalendar(removeEvent, 1) -- it removes data only from existing view and then if we browse back to it, it is already read.
Thus the source object needs to be removed, but we never specified a source id? I've tried sending the same data again with removeEventSource and it didn't quite work. I need help removing all instances of this object that is dynamically created. Thanks,