我有三个组合框 首先选择我想要第二个和第三个组合框加载所需的值。 这是我的代码片段。
{
xtype : 'combo',
store : 'product.CategoryComboBox',
name: 'category',
displayField: 'name',
valueField: 'idProductCategory',
multiSelect : false,
fieldLabel: 'Category',
allowBlank: false,
allowQueryAll : false,
forceSelection : true,
typeAhead: true,
triggerAction: 'all',
delimiter : ',',
width: 300,
mode: 'local',
listeners:{select:{fn:function(combo, value) {
var attribute = Ext.getCmp('attributes');
var feature = Ext.getCmp('features');
attribute.setValue('');
attribute.store.removeAll();
attribute.setDisabled(false);
attribute.store.load({
params: {id: 5}
});
feature.setValue('');
feature.setDisabled(false);
feature.store.removeAll();
feature.store.load({
params: {id: 5}
});
//attribute.store.filter('abbr', 1);
}}}
}
这里我遇到的问题是我必须先选择第二个和第三个组合框,然后选择第一个组合正确加载数据。 如果首先选择第一个组合,则第二个和第三个都不会加载选项。
答案 0 :(得分:0)
使用更改侦听器而不是选择侦听器,我认为你会到达那里。