Skip to content

Instantly share code, notes, and snippets.

@edspencer
Created April 28, 2009 10:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edspencer/103062 to your computer and use it in GitHub Desktop.
Save edspencer/103062 to your computer and use it in GitHub Desktop.
/**
* @class CampaignFilter
* @extends Ext.Panel
* Description
*/
CampaignFilter = Ext.extend(Ext.Panel, {
constructor: function(config) {
var config = config || {};
Ext.applyIf(config, {
//your default config goes here
});
CampaignFilter.superclass.constructor.call(this, config);
},
onRender: function(ct, position) {
//do you resizer stuff
CampaignFilter.superclass.onRender.apply(this, arguments);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment