如果不是‘额’,点击其他combo填入的值都和最后一次触发的相同。‘select’也可以实现(function 中传入的参数不同,combo, records, eOpts),可以获得combo,再获得值
Ext.getCmp('combobox的id')。然后getValue();
items : [{
xtype : 'combobox',
id : 'one',
name : 'one' ,
margin : '12px 4px 4px 4px',
fieldLabel : '一',
store : ['1', '2', '3', '非'],
listeners : {
change : {
fn : me.changeValue,
scope : me
}
}
}, {
xtype : 'combobox',
id : 'two',
name : 'two' ,
margin : '12px 4px 4px 4px',
fieldLabel : ' 二',
store : ['1', '2', '3', '额 '],
listeners : {
change : {
fn : me.