I have an Angular 5 application using ngx-bootstrap. I create two modals using the Modal Component. I need to close the first modal after some time and then open the second modal.
I tried both of these before opening the second modal but...
- ...when I use
this.modalService.hide(0)
in the component I show the modals in, nothing happens - ...when I use
this.modalService.hide(1)
in the component I show the modals in, the second modal opens and closes right after
Also this.modalReference.hide()
didn't do it.
Any suggestions highly appreciated!
I managed to get your scenario working with the following implementation
In app.component.html
In the above modal sections note two important things; 1) Each modal section has a reference to the modal directive via
bsModal
2) there's a reference to the element node using #... Also it is imperative that reference has different names... In this example, i've opted to use#modalone
and#modaltwo
. Each reference here is passed an instance ofModalDirective
.In app.component.ts obtain a reference of the modal elements using the
@ViewChild()
decorator with the reference name used above. (see full docs here https://angular.io/api/core/ViewChild)In your
ngAfterViewInit()
life cycle hook toggle the first modal using theshow()
function. The initial show() call is performed within the AfterViewInit lifecycle hook in order to have the element's node at hand. This will enable the first modal.Add a simple toggle function (that is referenced in the modal html above) to switch between the two modals.
This should demonstrate the toggling between two modals as you require... Here's a working plunker https://plnkr.co/edit/F5oWAI?p=preview