Created
July 3, 2011 06:37
-
-
Save bmoeskau/1062008 to your computer and use it in GitHub Desktop.
Fix for deferredRender getting bypassed by certain container setups
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Ext.layout.container.AbstractCard.override({ | |
| renderChildren: function () { | |
| if (!this.deferredRender) { // <-- added this check | |
| this.getActiveItem(); | |
| this.callParent(); | |
| } | |
| } | |
| }); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment