Hello,
I am trying to reliable capture the parent ID when opening a series.
The series of events:
0) Setup:
fields: {
Id: { name: "id" },
subject: { name: "subject" },
isAllDay: { name: "is_all_day" },
startTime: { name: "start" },
endTime: { name: "end" },
isBlock: { name: "is_block" },
recurrenceRule: { name: "reoccurence_rule" },
recurrenceID: { name: "parent_id" },
recurrenceException: {
name: "reoccurence_exception",
},
},
}}
....
function editorTemplate(props) {
console.log(props.parent_id);
...
1) User clicks on a series appointment
2) User is presented with a prompt to edit the series (or event)
3) User selects edit appointment
4) In the editor template, the parent_id is set to the number of recurring events series in the data source.
Sometimes the parent_id of the series is indeed set correctly, but this is not reliable.
Possible solutions:
Is there a way to capture the dialog boxes value (2)?
Thanks