`

this.ownerCt用法

EXT 
阅读更多
this.ownerCt获取当前对象所在的容器Container

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();
});

 

当然,也可以用Ext.getCmp()来实现,效果图:

未命名

分享到:
评论
2 楼 jingyemingyue 2012-06-25  
是的,window是可以不需要render的,但是它的API是有render方法的哦
1 楼 maoweiwer 2012-06-24  
window不需要render

相关推荐

Global site tag (gtag.js) - Google Analytics