onPopupOpen(args: PopupOpenEventArgs) {
if (( args.type === 'DeleteAlert' )) {
this.ttService.delete(id).subscribe(res=>{
this._snackBar.open("success", 'Done!', {duration: 4000});
},err=>{
this._snackBar.open("Error, Please try again", 'Error!', {duration: 4000});
});
}
}
I need to access to the confirmation to correctly delete the appointment from database.