set 40output through modalref angular

Solutions on MaxInterview for set 40output through modalref angular by the best coders in the world

showing results for - "set 40output through modalref angular"
Gaia
06 Mar 2020
1openModal() {
2  const modalRef = this.modalService.open(ModalContentComponent);
3  modalRef.componentInstance.user = this.user;
4  modalRef.componentInstance.passEntry.subscribe((receivedEntry) => {
5  	console.log(receivedEntry);
6  })
7}
Chahine
17 Jan 2017
1openModal() {
2  const modalRef = this.modalService.open(ModalContentComponent);
3  modalRef.componentInstance.user = this.user;
4  modalRef.componentInstance.passEntry.subscribe((receivedEntry) => {
5  	console.log(receivedEntry);
6  })
7}