zl程序教程

您现在的位置是:首页 >  工具

当前栏目

学习ExtJS访问容器对象

容器对象学习 访问 Extjs
2023-06-13 09:14:13 时间
一、属性
ownerCt:得到当前对象所在的容器。
items:集合列表
二、应用举例
复制代码代码如下:

Ext.onReady(function(){
var_window=newExt.Window({
title:"测试窗体",
layout:"form",
width:300,
plain:true,
items:{
id:"name",
xtype:"textfield",
fieldLabel:"姓名"
},
buttons:[{
text:"确定",
handler:function(){
alert(this.ownerCt.ownerCt.items.first().getValue());
alert(this.ownerCt.ownerCt.items.itemAt(0).getValue());
alert(Ext.getCmp("name").getValue());
}
}]
});
_window.show();
});