ExtJs: Search / Filter within a ComboBox
问题 I've the following problem / question in ExtJs 2.3: I'd like to do a search within a combobox. I'll give you an example: Ext.comboData.names = [['Peter', 'Paul', 'Amanda']]; var store = new Ext.data.SimpleStore({ fields: ['name'], data: Ext.comboData.names }); var combo = new Ext.form.ComboBox({ name: '...', id: '...', store: store, displayField: 'name', typeAhead: true, mode: 'local', forceSelection: false, triggerAction: 'all', emptyText: '-', selectOnFocus: true, applyTo: '...', hiddenName