0

ext js を使用して 2 つのコンボ ボックスを設定しています。コンボボックス1でアイテムが選択されたときに、コンボボックス2の値が動的に変化するようにします。これまでのところ、必要な形式のコンボボックス 2 に必要なコンテンツを取得できました。

例えば:

これは私がこの目的のために行っていることです:

 ddlLocation.on('select', function (box, record, index) {

    PageMethods.getAllBanksList(ddlLocation.getValue(), function (banks) {
        ddlBank.banksArray = banks;    //this is the assignment part
                                       //Bank returns the formatted string


    }, GenericErrorHandler);

});

これは私のddlBankコンボボックスです:

ddlBank = new Ext.form.ComboBox({
    fieldLabel: 'Bank',
    labelStyle: 'width:130px',
    id: 'ddlBank',
    store: banksArray,
    mode: 'local',
    editable: false,
    triggerAction: 'all',
    value: banksArray[0][0]
});

割り当てでは何も変更しません。また、ドロップダウンの値を更新したり、消去したりしませんか?

4

1 に答える 1

2

これはあなたが探しているもののように見えます。

http://www.sencha.com/forum/showthread.php?184207-Controlling-one-combobox-by-selection-of-another-combobox

于 2012-09-19T20:42:41.990 に答える