This question has been asked, but all of the replies generally say just add fields to the schema and it will work. I think all necessary recurrence fields are in my schema. This is it:
schema: {
model: {
id: "MeetingID",
fields: {
MeetingID: {
from: "meeting_id"
},
title: {
from: "desc",
defaultValue: "No title",
validation: {
required: true
}
},
start: {
type: "date",
from: "start_time"
},
end: {
type: "date",
from: "end_time"
},
description: {
from: "case_name"
},
caseManager: {
from: "case_manager",
nullable: true
},
mediatorIds: {
from: "mediator_LawyerIDs"
},
result: {
from: "meeting_result",
nullable: true
},
caseNumber: {
from: "case_number",
nullable: true
},
case_location: {
from: "location",
nullable: true
},
parties: {
from: "parties",
nullable: true
},
numParties: {
from: "number_of_parties",
nullable: true
},
created_by: {
from: "created_by",
nullable: true
},
creation_timestamp: {
from: "creation_timestamp",
nullable: true
},
//Recurrence specific fields
recurrenceId: {
from: "RecurrenceID"
},
recurrenceRule: {
from: "RecurrenceRule"
},
recurrenceException: {
from: "RecurrenceException"
},
attendies: {
from: "Attendies"
},
type: {
from: "Type"
},
deadline: {
from: "Deadline"
},
priority: {
from: "Priority"
},
labelAs: {
from: "LabelAs"
}
}
}
}
},
Help is greatly appreciated.