Hi Marko,
Greetings from Syncfusion Support.
When we delete an event by programmatically by making use of deleteEvent method, we could not display the delete alert. But if we want to show the delete alert we need to set the event object to the Schedule’s activeEventData and call the openDeleteAlert method for normal event and for recurrence events call the deleteClick method like below,
For Normal Event delete:
let events = this.scheduleObj.getCurrentViewEvents();
//set the event object which one you want delete.
(this.scheduleObj.activeEventData as any).event= events[0];
//to delete the normal event
this.scheduleObj.quickPopup.openDeleteAlert();
For Recurrence event delete:
let events = this.scheduleObj.getCurrentViewEvents();
//set the event object which one you want delete.
(this.scheduleObj.activeEventData as any).event= events[0];
this.scheduleObj.quickPopup.quickPopupHide();
this.scheduleObj.quickPopup.deleteClick();
Kindly try the above sample and revert us for further assistance.
Regards,
Vengatesh