Hi Toke,
Syncfusion Greetings.
We have prepared the sample to show the list of appointments collection in console and same can be available in below link.
actionComplete: function (e) {
var schObj = $("#Schedule1").data("ejSchedule");
// To get all master appointments rendered in Schedule
console.log("Master appointments rendered in Schedule");
console.log(schObj.getAppointments());
// To get all processed appointments including occurrences of recurrence appointment
console.log("All processed appointments in Schedule");
console.log(schObj._processed);
// To get current view appointments
console.log("Current view appointments")
console.log(schObj._renderedApp);
// To get current view occurrences
console.log("Current view occurrences");
var x = schObj._renderedApp.filter(x => x.RecurrenceRule);
console.log(x);
// To get All occurrences
console.log("All occurrences");
var y = schObj._processed.filter(x => x.RecurrenceRule);
console.log(y);
}
Kindly try with the above sample and let us know, if you need any further assistance on this.
Regards,
M.Vinitha devi