我正在使用 extjs 4.0.7。我有一个要求,其中我在网格的编辑模式中有两个组合框,我需要根据第一个中选择的值更改第二个中的数据。
我正在使用 extjs 的 MVC 架构和返回 json 字符串以填充组合框中的数据的 java 代码。我的第一个组合框的代码是:
查看文件:
items: [{
id: 'country',
header: 'Countries',
field: {
xtype: 'combo',
store: [
["USA","USA"],
["India","India"],
],
editable: false,
allowBlank: false,
listeners: {
select: function(combo, records, eOpts){
contactTypeGrid = combo.getValue();
myGrid.fireEvent('LoadStateOnSelect');
}
}
}
},
{
id: 'states',
header: 'Sates',
dataIndex: 'states',
field: {
xtype: 'combo',
store: 'StateStore',
valueField: 'stateDesc',
displayField: 'stateText',
}
}, ....
]
控制器:
LoadStateOnSelect: function(){
contactTypeGrid = contactTypeGrid.toLowerCase();
var stateStore = this.getStateStoreStore();
stateStore.getProxy().url = "myURL.do";
stateStore.getProxy().extraParams.act = contactTypeGrid;
stateStore.load();
},
但是,当我运行此代码时,第二个存储中的数据在后台发生更改,但加载掩码继续出现在前面,因此我无法选择任何值。
我应该如何解决条件数据加载问题?任何帮助都感激不尽。