如何在extjs 3.2.1中创建多选组合框?

如何在extjs 3.2.1中创建多选组合框?,extjs,extjs3,Extjs,Extjs3,我有一个面板,里面有一个组合,我尝试了多种方法,即使是multiselected:true(但它似乎适用于高于4的版本),我如何在这个旧版本中实现它 { xtype : 'combo', id : 'cmbSociedad', allowBlank : true, forceSelection : true, autoLoad : true, blankText : campoNoVacio, fieldLabel : contratoBuscadorSociedadKonecta, empty

我有一个面板,里面有一个组合,我尝试了多种方法,即使是
multiselected:true
(但它似乎适用于高于4的版本),我如何在这个旧版本中实现它

{
xtype : 'combo',
id : 'cmbSociedad',
allowBlank : true,
forceSelection : true,
autoLoad : true,
blankText : campoNoVacio,
fieldLabel : contratoBuscadorSociedadKonecta,
emptyText : contratoBuscadorBlankTextSociedadKonecta,
store : storeSociedades,
displayField : 'nombreCif',
valueField : 'id',
selectOnFocus : true,
mode : 'local',
typeAhead : false,
editable : true,
triggerAction : 'all',
width : 500,
value : ''
}

这回答了你的问题吗?看起来这个问题中的链接已经失效了。但你可以在网上找到其他选择。例如,是来自Sencha论坛的一个实现(我没有使用/测试过这个实现)。