Ext.ns('ES');

ES.SiteCharacteristicNumberFormWindow = Ext.extend(Ext.Window,{
  title: 'Ajout de vos données physiques',
  closable:true,
  width: 335,
  height: 135,
  layout: 'fit'
  ,initComponent:function() {
    var config = {items:[{
      xtype:'ESsitecharacteristicnumberform'
    }]};
    // apply config
    Ext.apply(this, Ext.apply(this.initialConfig, config));
    // call parent initComponent
    ES.SiteCharacteristicNumberFormWindow.superclass.initComponent.call(this);
    this.doLayout();
  } // end of function initComponent
  ,onRender:function() {
    // call parent
    ES.SiteCharacteristicNumberFormWindow.superclass.onRender.apply(this, arguments);
//    this.physicDatasForm = this.items.itemAt(0);
//    this.physicDatasFormAreaHelp = this.items.itemAt(1);
    // after parent code, e.g. install event handlers on rendered components
  } // eo function onRender
});

Ext.reg('ESsitecharacteristicNumberformwindow', ES.SiteCharacteristicNumberFormWindow);
