1
有兩個Extjs Comboboxes
我如何選擇的ExtJS的組合值設置爲另一個組合框
var cb1 = new Ext.form.ComboBox({
fieldLabel: 'Combobox1',
width: 100,
listeners:{
scope: this,
'select': this.reset
}
});
var cb2 = new Ext.form.ComboBox({
fieldLabel: 'Combobox2',
width: 100,
baseParams: { loadInitial: true, cb1Val: this.cb1.getValue() } // Here I want to get selected value of cb1
listeners:{
scope: this,
'select': this.reset
}
});
我使用this.cb1.getValue()
得到的cb1
選擇的價值,但我在這裏獲得空白值。
有誰能告訴我我在做什麼錯在這裏。
但是我想在cb2加載時將選定的cb1值傳遞給cb2的基本參數。上面的方法將它設置爲cb2的選擇監聽器。 –
你可以在加載監聽器中加入這段代碼嗎? – Ved