Ext.ns('ES');

ES.HeatingLeftPanel = Ext.extend(Ext.Panel,{
  layout: 'column'
  ,title: 'Liste des compteurs chauffage'
  ,defaults: {
    columnWidth: 1,
    style: {
      padding: '10 0 0 0'
    }
  }
  //,bodyStyle: 'padding:5px'
  ,initComponent:function() {
    // hard coded config - cannot be changed from outside
    var config = {
      items:[{
        xtype:'ESheatingcountergrid',
        height:804,
        width:250
      }]
    };
    // apply config
    Ext.apply(this, Ext.apply(this.initialConfig, config));
    // call parent initComponent
    ES.HeatingLeftPanel.superclass.initComponent.call(this);
  } // end of function initComponent
  ,onRender:function() {
    // call parent
    ES.HeatingLeftPanel.superclass.onRender.apply(this, arguments);
    // after parent code, e.g. install event handlers on rendered components
  } // eo function onRender
});

Ext.reg('ESheatingleftpanel', ES.HeatingLeftPanel);



