Hi,I'm using @syncfusion/ej2-react-schedule, and I use json file for storage via API. I faced two problems:
1) With Delete event in series : if I update RecurrenceException, i lose the last deleted event in the series
2) With Edit event in series : same problem
And this is the JSON file I'm working with :
{
"scheduleData": [
{
"RecurrenceRule": "FREQ=DAILY;INTERVAL=1;",
"StartTimezone": null,
"EndTimezone": null,
"RecurrenceException": "20210407T093000Z",
"IsAllDay": false,
"StartTime": "2021-04-04T09:30:00.000Z",
"EndTime": "2021-04-04T10:00:00.000Z",
"Id": 1,
"Subject": "add"
}
]
}