function diaglogs(){ Ext.onReady(function(){ var _window=new Ext.Window({ title:"選擇批語", renderTo:Ext.getBody(), frame:true, plain:true, resizable:false, buttonAlign:"right", closeAction:"hide", maximizable:true, closable:true, bodyStyle:"padding:4px", width:310, height:230, layout:"form", html:'<input type="text" value="zzzzz">', lableWidth:45, defaults:{xtype:"textfield",width:180}, buttons:[{text:"肯定"},{text:"取消",handler:function(){_window.close();}}], listeners:{ "show":function(){ }, "hide":function(){ }, "close":function(){ } } }) _window.show(); }) ; }