1. 属性 ownerCt: 現在のオブジェクトが配置されているコンテナーを取得します。
items: collection list
2. 応用例
Ext.onReady(function(){
var _window = new Ext.Window({
title:"テスト フォーム",
layout:"form",
width:300、
plain:true、
items:{
id:"name"、
xtype:"textfield"、
fieldLabel:"name"
} ,
buttons:[{
text:"OK",
handler:function(){
alert(this.ownerCt.ownerCt.items.first().getValue()); >alert (this.ownerCt.ownerCt.itemAt(0).getValue()) ;
alert(Ext.getCmp("name").getValue()) ;
}
}] 🎜> }) ;
_window.show()
}) ;