我目前有一个包含支持产品的列表,其中显示了支持产品的名称。我想要做的是从该组合中你可以选择多个值。我尝试使用lovcombo,但它对我不起作用。
感谢您的帮助
xtype : 'combo',
fieldLabel: this.i18n.fieldProdApoyo,
hiddenName : 'fovaFisioProdApoyo',
displayField: 'mateNombre',
valueField : 'mateId',
typeAhead : true,
emptyText: this.i18n.comboProductosEmptyText,
forceSelection: true,
titleCollapse: true,
triggerAction: 'all',
store: new Ext.data.JsonStore({
url : ctx + '/material.do',
autoLoad : true,
remoteSort : false,
baseParams : {
op : 'listCombo'
},
sortInfo : {
field : "mateNombre",
direction : "ASC"
},
fields : ['mateId', 'mateNombre']
})
答案 0 :(得分:1)
尝试multiSelect:true;在那个组合中。请记住,当您选择多个值时,按“Ctrl”键可以使用它。