5
votes

I have popup window, not modal. How can I close this window by click on other part of page (not in window)?

1

1 Answers

5
votes

Something like this:

function closeWin(e, t) {
    var el = win.getEl();

    if (!(el.dom === t || el.contains(t))) {
        Ext.getBody().un('click', closeWin);
        win.close();
    }
}

Ext.getBody().on('click', closeWin);