3、tstrap.js">Ext.require('Ext.window');Ext.onReady(function(){Ext.create('Ext.Window',{width:400,height:230,//X,Y标识窗口相对于父窗口的偏移值。x:10,y:10,plain:true,//指示标题头
4、的位置,分别为top,bottom,left,right,默认为topheaderPosition:'left',title:'ExtJS4Window的创建,头在左'}).show();Ext.create('Ext.Window',{width:400,height:230,x:500,y:10,plain:true,//指示标题头的位置,分别为top,bottom,left,right,默认为topheaderPosition:'right',title:'ExtJS4Window的创建,头在右'}).show();E
5、xt.create('Ext.Window',{width:400,height:230,x:10,y:300,plain:true,//指示标题头的位置,分别为top,bottom,left,right,默认为topheaderPosition:'bottom',title:'ExtJS4Window的创建,头在底'}).show();varwin=Ext.create('Ext.Window',{width:400,height:230,x:500,y:300,plain:true,//指示标题头的位置,分别为top,b
6、ottom,left,right,默认为topheaderPosition:'top',title:'ExtJS4Window的创建'});win.show();});