0

我有三个组合框 Onselect 第一个我希望第二个和第三个组合框加载受尊重的值。这是我的代码片段。

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

这里我遇到的问题是我必须先选择第二个和第三个组合框,然后选择第一个组合正确加载数据。如果先选择第一个组合,则第二个和第三个都不会加载选项。

4

1 回答 1

0

使用更改侦听器而不是选择侦听器,我认为您会到达那里。

于 2013-01-30T17:31:51.623 回答