I am using extjs combobox for a sex field. It have two value "M" and "F". I want to make it usable with keyboard:
[
xtype: 'combo',
typeAhead: true,
queryMode: 'local',
minChars: 1,
triggerAction: 'all',
store: [
['M', 'M'],
['F', 'F']
]
]
This works if I type "Ftab" (uppercase), but not "ftab" (lowercase). If I check the code to this, the typeahead works:
store: [
['M', 'Male'],
['F', 'Female']
]
Any ways to keep the value as "M" and have lowercase works?