-
30 Sep 2011 6:17 AM #1
multi search in combobox
multi search in combobox
Hello. I have combobox with local data:
and now if you have Store:Code:{ xtype: 'combo', autoSelect: true, typeAhead: true, mode: 'local', triggerAction: 'all', forceSelection: true, store: new Ext.data.JsonStore({ fields: ['id', 'element_name', 'msrp'], data: offerGlobalData.productElementList }) }
test123
123test
test123test
testtest
and I type in combo "123" - I see only one record "123test"
but I want to see three entries:
test123
123test
test123test


Reply With Quote