Hi Rahul,
Greetings from Syncfusion Support.
We have validated your reported query “how we can get all reoccurrences dates at the time of creating the record” and achieved your requirement by using actionBegin event of our scheduler and getRecurrenceDates method. We have prepared the below sample for your reference.
actionBegin: args => {
if (args.requestType == 'eventCreate') {
let data = args.data[0];
if (!isNullOrUndefined(data.RecurrenceRule)) {
const recurrenceElement: EJ2Instance = document.querySelector(
'.e-recurrenceeditor'
) as EJ2Instance;
const recurrenceObj: RecurrenceEditor = recurrenceElement
.ej2_instances[0] as RecurrenceEditor; // Here we are taking the recurrence object
// Here we get all occurrences dates using getRecurrenceDates method
let occurrenceDate: any = recurrenceObj.getRecurrenceDates(
data.StartTime,
data.RecurrenceRule
);
console.log(occurrenceDate);
}
}
}
Kindly try with the above sample and get back to us if you need any further assistance
Regards,
Vinitha