Ext.onReady(function(){ var _window = new Ext.Window({ title:"用戶登陸", frame:true, width:250, height:130, plain:true, layout:"form", labelWidth:45, resizable:false, constrain:true, closeAction:"hide", defaults:{xtype:"textfield",width:160}, bodyStyle:"padding:5px;", listeners:{ "show":function(){ alert("窗口顯示"); }, "hide":function(){ alert("窗口隱藏"); } }, items:[ {fieldLabel:"賬號"}, {fieldLabel:"密碼"} ], buttons:[ {text:"確定",handler:function(){ var _coll = this.ownerCt.ownerCt.items; // alert(this.ownerCt.ownerCt.title); alert(_coll.first().getValue() + _coll.itemAt(1).getValue()); } }, {text:"取消",handler:function(){ _window.hide(); } } ] }); _window.render(Ext.getBody()); _window.show(); });
當(dāng)然,也可以用Ext.getCmp()來實(shí)現(xiàn),效果圖: