In my application, it is using $modal.open()
function to open a modal popup which is using another page as a template. While clicking the button, it is showing the modal popup fine. If I click the Cancel button then it is calling this function and working fine also.
$scope.cancel=function(){
});
But if the user clicks outside the modal popup, we are unable to catch that event by this code
$scope.dismiss=function(){
});
How do I catch that event?
I have seen many articles of AngularJS, but couldn't find a solution for this.
I had this same problem with the Angular Mobile UI Demo (1.2), however in the demo files the modal is not declared in the main JS.
Instead, just adding two more variables to the in modal1.html did the trick.
This is explained here: http://mobileangularui.com/docs/#outer-click
Both properties are needed for it to work.
$modal.open()
returns a object with a promise. You can use the promise and chain it though, and handle it in the catch. When you click on the backdrop outside, it does adismiss
internally and it rejects the promise.ex:-
If you are using this in the child where
$modalInstance
is injected you could do that there as well. So basically rather than dealing withevent
this helps you do it at a higher level with the help of promises.You can use
in your options. Like this:
The Bootstrap 3.0 Documentation explains that
backdrop: 'static'
specifies a backdrop that doesn't dismiss the modal on click.Catch all clicks on the html document, and close the modal.
Catch clicks inside the modal and stop the propagation.
i.e.