If I create a modal window:
Ext.define(\'myWindow\', { extend: \'Ext.Container\', alias: \'widget.myWindow\', floating: true, modal: true, li
You can try this also:
Ext.getBody().on('click', function(e, t){ var el = win.getEl(); if (!(el.dom === t || el.contains(t))) { win.close(); } });