Hi, how to update or delete recurring events in Calendar API?
I try calendar.remove(event.id) - no effect, delete only event with attribute id.rid==null
calendar.update(event,false) - updates all instances of the event, and creates a new one.
One more question:
How delete the properties of the CalendarEvent object - recurrenceRule and alarms?
I try set null or empty values event.alarms and event.recurrenceRule and then call calendar.update(event) - but it does not work.