选择后,组合框不允许再次选择该值

时间:2013-02-19 07:21:46

标签: extjs

我在我的应用程序中使用了combobox,它允许我只选择一次值,当我想改变我的选择它不允许我再次选择值。它只是打开并返回。如何解决这个问题。

代码:

 {
                xtype:'combobox',
                style:'margin:10px;',
                fieldLabel: 'M Group(*)',
                editable:false,
                bodyStyle:'padding-left:10px;',
                store: GroupStore,
                valueField:'value',
                displayField:'name',
                multiSelect: false,
                name: 'GroupId',
                id:'MGroupId',
                queryMode: 'local',
                triggerAction: 'all',
                //disabled:true,
                emptyText:'Select Group',   
                listeners: {
                    expand : function(field, eOpts)
                    {                   
                        if(isFirst) {
                            inputJson.Unit.id = Id;                     
                            this.getStore().load({
                                  params: {jsonData: Ext.encode(inputJson)}
                            });                     
                            Ext.getCmp('MGroupId').setDisabled(false);
                            Ext.getCmp('MGroupId').setVisible(true);

                        }else{
                            Ext.getCmp('MGroupId').setDisabled(true);
                            Ext.getCmp('MGroupId').setVisible(false);

                        }

                    },              
                    select: function(combo, record, index) {    

                     this.getStore().each(function(r){                  

                         if(combo.getValue() == r.data['value'])
                         {
                            MGroupName = r.data['name'];                                                    
                         }
                     });

                  }

0 个答案:

没有答案