欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

学习ExtJS 访问容器对象

程序员文章站 2022-06-17 16:13:53
一、属性 ownerct:得到当前对象所在的容器。 items:集合列表 二、应用举例 复制代码 代码如下: ext.onready(function(){ var _wi...
一、属性
ownerct:得到当前对象所在的容器。
items:集合列表
二、应用举例
复制代码 代码如下:

ext.onready(function(){
var _window = new ext.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() ;
}) ;