I am using extJs 3.4 combobox autocomplete, i want autocomplete search to work interchangeably of characters position. For example when i type 'v' it autocompletes to vanessa (it is working well) but when i type 'a' it doesnt autocomplete. i would like to autocomplete by any character(that exist) in any site. Something like this a - vanessa,daniela s - vanessa or ssa - vanessa
This is my code
xtype: 'combo',
fieldLabel: 'prov',
id : 'lang',
store:[['tr','vanessa'],['ru','daniela'],['en','English']],
mode: 'local',
triggerAction: 'all',
selectOnFocus:true,
listeners: {
afterrender: function(combo) {
var recordSelected = combo.getStore().getAt(1);
combo.setValue(recordSelected.get('field1'));
}
}
Thank you and i apologize for my grammar it isn't very good.