I am using fullcalendar to show events present in my application.
https://fullcalendar.io/docs/event_data/Event_Source_Object/ I am using the url option of eventsource to show events from remote json url
{
id: 1,
url: '/myfeed.aspx',
color: 'yellow', // an option!
textColor: 'black' // an option!
}
All that is fine i.e I can see events populated in my calendar via remote url.
My query is to get list if all those events in a variable so that I can control over those events later.
I want to use that url option only as event source.
Is there any method to get list of events under a particular event source in full calendar