gpt4 book ai didi

javascript - 如何更改 ExtJS 中组合框的值

转载 作者:行者123 更新时间:2023-12-02 19:21:27 24 4
gpt4 key购买 nike

我正在使用 ext js 填充我的两个组合框。我希望在组合框 1 中选择某个项目时,组合框 2 的值动态更改。到目前为止,我已经成功地在combobox2 中获取了所需格式的内容。

例如:

这就是我为此目的所做的:

 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]
});

它不会改变作业,而且它不会刷新甚至清除下拉列表的值?

最佳答案

关于javascript - 如何更改 ExtJS 中组合框的值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12495553/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com