Hi subhajit,
Syncfusion Greetings.
By using isCrudAction property, we can evaluate the Cancel click of the event window in popupClose event.
onPopupClose(args) {
if (args.type === "Editor") {
//if we can click save button, isCrudAction is true
if (!(this.scheduleObj.eventWindow as any).isCrudAction) {
alert("You just click on Cancel/close button");
}
}
Regards,
M.Vinitha devi