I want to remove all events (remove all events from the calendar), but I did not find any function or method to remove all events from the whole calendar.
I found only removeEvnet method.
Right now, I am using below approach to remove all events
for (var event in eventController.events) { eventController.remove(event); }
Hello,
I want to remove all events (remove all events from the calendar), but I did not find any function or method to remove all events from the whole calendar.
I found only
removeEvnet
method.Right now, I am using below approach to remove all events
for (var event in eventController.events) { eventController.remove(event); }
Kindly provide a better solution if one exists.
Thank you, Vivek Vithalani.