Skip to content

Instantly share code, notes, and snippets.

@bmoeskau
Created July 3, 2011 06:37
Show Gist options
  • Select an option

  • Save bmoeskau/1062008 to your computer and use it in GitHub Desktop.

Select an option

Save bmoeskau/1062008 to your computer and use it in GitHub Desktop.
Fix for deferredRender getting bypassed by certain container setups
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