Allow you to create a new Synergy calendar.
Example usage:
CalendarAssistant.prototype.createCalendar = function() {
this.currentMethod = "Calendar - Create";
this.controller.serviceRequest('palm://com.palm.calendar/crud', {
method: 'createCalendar',
parameters: {
accountId: this.accountId,
calendar: {
calendarId: "",
name: "My Events"
}
},
onSuccess: this.createEvent.bind(this),
onFailure: this.failureHandler.bind(this)
});
};