Is there a default option to close a jquery dialog by clicking somewhere on the screen instead of the close icon?
|
|
Here are 3 methods to close a jquery UI dialog when clicking outside popin: If the dialog is modal/has background overlay: http://jsfiddle.net/jasonday/6FGqN/
If dialog is non-modal Method 1: http://jsfiddle.net/jasonday/xpkFf/
Non-Modal dialog Method 2: http://jsfiddle.net/jasonday/eccKr/
|
|||||||||||||||
|
|
When creating a JQuery Dialog window, JQuery inserts a ui-widget-overlay class. If you bind a click function to that class to close the dialog, it should provide the functionality you are looking for. Code will be something like this (untested):
Edit: The following has been tested for Kendo as well:
|
||||
|
|
|
This post may help: http://www.jensbits.com/2010/06/16/jquery-modal-dialog-close-on-overlay-click/ See also How to close a jQuery UI modal dialog by clicking outside the area covered by the box? for explanation of when and how to apply |
||||
|
|
|
If you have several dialogs that could be opened on a page, this will allow any of them to be closed by clicking on the background:
(Only works for modal dialogs, as it relies on '.ui-widget-overlay'. And it does close all open dialogs any time the background of one of them is clicked.) |
|||
|
|
|
In some cases, Jason's answer is overkill. And The solution that I find works in all cases is:
|
|||||||
|