Ext.ns('energywater');

energywater.emptyPanel = Ext.extend(Ext.Panel,{
  headerCfg:{cls:'x-panel-header-em2'},
  bodyCfg: {cls:'x-panel-body-em' },
  width: 308
  ,initComponent:function() {
    // hard coded config - cannot be changed from outside
    var config = {};
     // apply config
    Ext.apply(this, Ext.apply(this.initialConfig, config));
    // call parent initComponent
    energywater.emptyPanel.superclass.initComponent.call(this);

  } // end of function initComponent
  ,onRender:function() {
    // call parent
    energywater.emptyPanel.superclass.onRender.apply(this, arguments);

    // after parent code, e.g. install event handlers on rendered components

  } // eo function onRender

});

Ext.reg('energywateremptypanel', energywater.emptyPanel);



