Reputation: 85
I am trying to Open a modal from a link in another modal in ng-bootstrap.
Once the modal is closed with NgbActiveModal.close
I can't manage to open the other modal.
The structure is similar to this one:
<header>
<modal1 #firstModal></modal1>
<modal2 #secondModal></modal2>
</header>
Upvotes: 1
Views: 1094
Reputation: 5470
Not 100% sure if this is what you want. Based on my understanding on what you want to achieve is to close modal 1 and open modal 2.
Your Open Modal 2 needs to be changed to:
<a href="#" (click)=" d('dismiss modal1'); open(modal2);">Open Modal 2</a>
See the changes on plunkr: http://plnkr.co/edit/T7VOmZ7KWdqjTtYb8Wzd
Upvotes: 1