ngx-modal
ngx-modal copied to clipboard
onClose not working
Hello I'm write this code
this.modalService.openDialog(this.viewRef, { settings: { modalDialogClass: 'modal-dialog' }, childComponent: ChequeFormComponent, data:id, onClose: () => new Promise((resolve: any) => { console.log('closed'); }) });
but after close modal event not worked.
#16
I'm using this tutorial but I couldn't get data please help
Hi, problem was you never resolved your promise.
Proper code would be:
this.modalService.openDialog(this.viewRef, {
settings: {
modalDialogClass: 'modal-dialog'
},
childComponent: ChequeFormComponent,
data: id,
onClose: () => new Promise((resolve: any) => {
console.log('closed');
resolve();
})
});