Hi Jose,
Syncfusion Greetings.
By using the scheduler's popupOpen and popupClose event, we can easily find out if the user edited a single occurrence or a whole series. Please refer below codes and same can be available in below sample.
onPopupClose(args:PopupCloseEventArgs): void {
if(args.type == "RecurrenceAlert"){
this.flag = true;
}
}
onPopupOpen(args:PopupOpenEventArgs): void{
if(args.type == 'Editor' && this.flag){
// If user click the 'this event' from popup you will get current Action as 'EditOccurrence' else you get currentAction as 'EditSeries'
alert(this.scheduleObj.currentAction);
this.flag = false;
}
}
In the above example, the popupOpen event alerts the currentAction as' EditOcurrence' when the user edited the single occurrence, otherwise it alerts currentAction as' EditSeries.'
Kindly try with the above sample and let us know if you need any further assistance on this.
Regards,
M.Vinitha devi