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?

link|improve this question

1  
Could you confirm the browser and Ext version you're using, I've tested with Ext 4.0.0 and 4.0.1. There is a small bug fixed in 4.0.1 which could be relevant. – Simon Elliston Ball Jun 2 '11 at 14:03
I saw the bug in extjs 4.0.1 on Chrome (lastest dev, 13.something) and IE9. – J-16 SDiZ Jun 2 '11 at 23:58
I am using this in a editorgrid, just in case it matters. The value reset when I press [tab]. – J-16 SDiZ Jun 3 '11 at 0:00
I've checked with 4.0.2 and there are no issues with Safari, Chrome or Firefox 4. – rdougan Jun 21 '11 at 0:03
feedback

2 Answers

up vote 1 down vote accepted

not sure if you figured this one out, but I had a similar problem and found the solution:

enableKeyEvents : true,
forceSelection : true,
typeAhead : false,
    listeners : 
    {
        'keyup' : function(me)
        {
            var val = me.getRawValue();
            if(val == 'm' || val == 'f')
                me.setValue(val.toUpperCase());
        }
    }

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!

link|improve this answer
I have migrated to jquery. I think it works, but it is not as clean as I wish. – J-16 SDiZ Jun 22 '11 at 15:25
feedback

Set the combobox 'caseSensitive' config attribute to false (caseSensitive : false). This should solve problem.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.