I have been able to successfully add an ExtendedProperty to a
CalendarEventEntry using the Java API. I understand an
ExtendedProperty cannot be deleted, but can it be updated or changed?
I am trying to simply add a new ExtendedProperty to my event.
ExtendedProperty daysField = new ExtendedProperty();
daysField.setName("DaysNotice");
daysField.setValue(DaysNotice);
myEntry.addExtendedProperty(daysField);
After I update the entry from the code I seem to have two DaysNotice
fields, but in the XML contains the old information,
<gd:extendedProperty name="DaysNotice" value="1"/>
Any help would be much appreciated.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Calendar Data API" group.
To post to this group, send email to
[email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/google-calendar-help-dataapi?hl=en
-~----------~----~----~----~------~----~------~--~---