7

在 ExtJS 3.3.1 中,我尝试将 comboBox 设置为 multi select ,但它不起作用。

请帮忙。

 var mArray = new Array("ALL", "AAA", "BBB");
        var mCombo = new Ext.form.ComboBox({ id: 'ID', fieldLabel: 'ID',
            triggerAction: 'all',
            height: 100, width: 163,
            multiSelect: true,
            store: mArray
        });
        Ext.getCmp('mCombo').setValue("ALL");
4

2 回答 2

11

没有像multiSelectin那样的配置选项Ext.form.ComboBox
要获得所需的功能,您要么需要自己开发多选组合框,要么使用现有的替代品之一,如Ext.ux.form.CheckboxComboExt.ux.form.SuperBoxSelectExt.ux.form.LovCombo

于 2012-06-27T15:21:28.567 回答
-1
return new Ext.form.ComboBox({
                            fieldLabel: fieldLabel,
                            hiddenName: name,
                            store: store ,
                            valueField:'value',
                            displayField:'value',
                            typeAhead: true,
                            mode: 'local',
                            triggerAction: 'all',
                            emptyText:'Select '+fieldLabel+' ...',
                            selectOnFocus:true,
                            allowBlank:allowBlank,
                            forceSelection : true,
                            disabled:disabled,
                            multiSelect:true,
                            width:200,
                            id:id,
                            listeners:{
                                change : function( frm, newValue, oldValue ) {
                                    doRenderTL();
                                }
                            },
                            renderTo: Ext.get( renderTo )
                        });
于 2019-08-14T11:45:48.860 回答