问题描述
- extjs中通过this获取对象
-
下拉框里面有一个jsonstore对象,在监听里如何获得combobox对象。
'var aNetElement = new Ext.form.ComboBox({
fieldLabel : "A端网元" + i,
id : "aNetElement" + i,
emptyText : '请选择...',
isFormField : true,
anchor : '90%',
mode : 'local',
editable : false,
emptyText : '请选择...',
forceSelection : true,
triggerAction : 'all',
displayField : 'NAME',
valueField : 'CODE',
allowBlank : false,
store : new Ext.data.JsonStore({
autoLoad : true,
url : "/dodeal/queryNetElement",
fields : new Ext.data.Record.create([ 'CODE', 'NAME' ]),
listeners:{
load: function() {
// alert(this.ownerCt.fieldLabel); store没有ownerCt属性
// alert(Ext.getCmp("aNetElement" + (i - 1)).getValue()); id是通过i构造出来的,这种方法不行
}
}})
});'
时间: 2024-12-24 19:54:05