ExtボタンによるWindowインスタンスコードの作成


/**
 *     :            ,        
 */
Ext.onReady(function() {

			//        EXt    dom  ,     btm.dom alert(btn.dom.value)
			// jquery code var btn = $('#btn'), btn[0].value
			var btn = Ext.get("btn");
			
			   //          
			   btn.on("click",function(){Ext.create("Ext.window.Window",{
			   title:'  ', height:400, width:300, layout:'fit', //    
			   modal:true, //      ,html   html:'        ', //       
			   renderTo:Ext.getBody() }).show()})
			   
			 
			
			
			//    ,     id,            Ext getCmp  
			btn.on("click", function() {
						if (!Ext.getCmp("win")) {
							Ext.create("Ext.window.Window", {
										id : 'win',
										title : '  ',
										height : 400,
										width : 300,
										layout : 'fit',
										//       ,html  
										html : '        2',
										//        
										renderTo : Ext.getBody()
									}).show()
						}
					})

		
      //   :        ,         show()   
	 var win=Ext.create("Ext.window.Window", {
										id : 'win',
										title : '  ',
										height : 400,
										width : 300,
										layout : 'fit',
										//          
										closeAction:'hide',
										//       ,html  
										html : '        2',
										//        
										renderTo : Ext.getBody()
									});
	btn.on('click',function(){
	    win.show();
	})

})