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?
not sure if you figured this one out, but I had a similar problem and found the solution:
I also had a grid that was giving me grief for a simple yes/no type selection in a combobox. I have searched high and low for an answer, but came up with this hack.
Hope it helps!