Skip to content

Instantly share code, notes, and snippets.

@moduscreate
Created August 4, 2011 21:05
Show Gist options
  • Save moduscreate/1126280 to your computer and use it in GitHub Desktop.
Save moduscreate/1126280 to your computer and use it in GitHub Desktop.
Override Ext jS 4.0 form panel
Ext.override(Ext.form.Panel, {
loadRecord: function(rec) {
this.callOverridden(arguments);
this.fireEvent('load', this, rec);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment