How to select without using CTL key in multiselect in extjs -
xtype:"multiselectfield", fieldlabel:combodata.label, allowblank:false, labelalign:"left", autoscroll:false, scroll:false, width:280, height:80, store:combostore, value:combodata.selectvalue ? combodata.selectvalue : combodata.items[0].value, displayfield:"name", valuefield:"value",
you can using combobox , setting multiselect true.
{ xtype: 'combobox', multiselect: true, . . . }
the value of combobox array of valuefields of items selected.
Comments
Post a Comment