-
7 Jan 2013 3:31 AM #1
Customize modal window mask
Customize modal window mask
Automatically add the ui of the (modal) window to the mask element.
Tested on Ext 4.1.1
Code:// allow customizing window's modal mask Ext.define('patches.ExtZIndexManager',{ override:'Ext.ZIndexManager', _showModalMask:function(comp){ this.callParent(arguments); // mask is a reusable element, so each time it needs to accept only the relevant style this.mask.removeCls(this.customMaskCls); this.customMaskCls = 'modal-mask-'+comp.ui; this.mask.addCls(this.customMaskCls); } });
-
7 Jan 2013 11:09 AM #2
Thanks for sharing.
Scott.


Reply With Quote