Ext.ns('ES');

ES.HeatingEditCounterFormWindow = Ext.extend(Ext.Window,{
  title: 'Creation d un nouveau compteur chauffage',
  closable:true,
  width: 610,
  height: 220,
  layout: 'column',
  defaults: {
    columnWidth: 1,
    style: {
      padding: '10px'
    }
  }
  ,initComponent:function() {
    var config = {
      items:[{
        xtype:'ESheatingeditcounterform'
      }]
    };
    // apply config
    Ext.apply(this, Ext.apply(this.initialConfig, config));
    // call parent initComponent
    ES.HeatingEditCounterFormWindow.superclass.initComponent.call(this);
  } // end of function initComponent
  ,onRender:function() {
    // call parent
    ES.HeatingEditCounterFormWindow.superclass.onRender.apply(this, arguments);
    // after parent code, e.g. install event handlers on rendered components
  } // eo function onRender
});

Ext.reg('ESheatingeditcounterformwindow', ES.HeatingEditCounterFormWindow);



