Popup/Window auto close

Is there a way to close the popop/window automatically when clicked on the modal portion of the window?. i.e. if clicked outside the window, the window should be hidden/closed.

It’s the default behavior of a popup window.

Please, check the sample:
http://docs.webix.com/samples/10_window/02_popup.html

Thank you.

I am looking for a modal popup window to auto close when I click outside. How do I implement?.

I’ve fixed this using jQuery. Seems to work well. Put the snippet below in the onShow event:

var self = this; $(".webix_modal").one(“click”, function() { self.hide(); });