I have a server API, which will return events and all the occurrences of these events. The occurrences are generated by the server. And I load the data to the Scheduler. But I found the occurrences in the Scheduler is generated by the Scheduler, not the occurrences returned by the server API.
You can see in the picture, the occurrence id is generated.
I went through this demo’s loaded data:
https://docs.dhtmlx.com/scheduler/samples/03_extensions/01_recurring_events.html
It seems that every occurrence who has a valid event_pid, also has a unix timestamp as the event_length value. So I think the occurrences in this demo are the exception occurrences described in this doc:
https://docs.dhtmlx.com/scheduler/recurring_events.html#editingdeletingacertainoccurrenceintheseries
So is this means the Scheduler only loads the exception occurrences, and always generates the other normal occurrences?
Is there any way to load server generated normal occurrences to the Scheduler?