Ext.extend

// 创建命名空间Ext.ux
  Ext.namespace('Ext.ux');
  Ext.ux.WindowGrid = Ext.extend(Ext.Window, {
//新的参数
      xmlUrl:'',

//初始化
    initComponent : function() {    
        Ext.apply(this, {
            
        title:'Icon Combo Ext 2.0 Extension Class Example',
        width:800,
        height:600,
        modal:true,
        layout:'form',
        bodyStyle:'padding:10px',
        labelWidth:70,
        defaults:{anchor:'100%'},
        items:[
                 //你添加的东西
               ]
    
            


       });     
       
       Ext.ux.WindowGrid.superclass.initComponent.call(this);   
    }
});

  var win=new Ext.ux.WindowGrid....//使用

你可能感兴趣的:(extend)