Hello,
I am looking for a workaround to the non-working multiselect combobox with a remote queryMode in the modern toolkit in the 6.7 ExtJS version.
Code:Ext.create({ fullscreen: true, xtype: 'container', padding: 50, layout: 'vbox', items: [{ xtype: 'combobox', label: 'Choose State', multiSelect: true, queryMode: 'remote', displayField: 'name', valueField: 'abbr', store: [ { abbr: 'AL', name: 'Alabama' }, { abbr: 'AK', name: 'Alaska' }, { abbr: 'AZ', name: 'Arizona' } ] }] });