Question: NOT ALLOW CLOSE THE MODAL POPUP

NOT ALLOW CLOSE THE MODAL POPUP

How can I prevent that the modal view be closed when I click outside the modal view area, because I lose what I'm doing, this is very annoying .. https://prnt.sc/rtojas

FU

Freddy Urbina

Asked
How can I prevent that the modal view be closed when I click outside the modal view area, because I lose what I'm doing, this is very annoying ..
https://prnt.sc/rtojas
  • MS

    Mian Saleem

    Answered
    You can add the following code at the end of the `themes/default/admin/views/footer.php` before `</script>` around line no 62

    ```
    $.fn.modal.prototype.constructor.Constructor.DEFAULTS.backdrop = 'static';
    ```
  • Login to Reply