How to catch backdrop click event when clicked out of angular ui bootstrap modal?

前端 未结 4 1071
青春惊慌失措
青春惊慌失措 2021-02-05 05:55

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

相关标签:
4条回答
  • 2021-02-05 06:24

    You can use

    backdrop: 'static'
    

    in your options. Like this:

    var modalInstance = $modal.open({
        templateUrl: 'myModalContent.html',
        controller: 'ModalInstanceCtrl',
        backdrop: 'static',
        ...
    });
    

    The Bootstrap 3.0 Documentation explains that backdrop: 'static' specifies a backdrop that doesn't dismiss the modal on click.

    0 讨论(0)
  • 2021-02-05 06:25

    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.

    <div class="modal-dialog" ui-outer-click="Ui.turnOff('modal1')" ui-outer-click-if="Ui.active('modal1')">
    

    This is explained here: http://mobileangularui.com/docs/#outer-click

    Both properties are needed for it to work.

    0 讨论(0)
  • $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 a dismiss internally and it rejects the promise.

    ex:-

    var instance = $modal.open(...);
    
     instance.result.then(function(){
      //Get triggers when modal is closed
     }, function(){
      //gets triggers when modal is dismissed.
     });
    

    If you are using this in the child where $modalInstance is injected you could do that there as well. So basically rather than dealing with event this helps you do it at a higher level with the help of promises.

    0 讨论(0)
  • 2021-02-05 06:42

    Catch all clicks on the html document, and close the modal.

    Catch clicks inside the modal and stop the propagation.

    i.e.

    $("html").on("click",closemodal());
    
    $(".modal").on("click",function(event){
       event.stopPropagation();
    }
    
    0 讨论(0)
提交回复
热议问题