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 = [[\
You can use this approach also: provide a listener to combobox and catch this event:
change: function() { //debugger var store = this.getStore(); store.clearFilter(); store.filter({ property: 'deviceName',//your property anyMatch: true, value : this.getValue() }); }