Reputation: 2480
I have 'xtype: combe' like http://jsfiddle.net/KYRhC/
{
xtype : 'combo',
fieldLabel : 'Letter',
store : mySimpleStore,
displayField : 'name',
typeAhead : true,
autoSelect: true,
triggerAction: 'all',
forceSelection: true,
editable: false,
mode : 'local'
}
I want when i click to selectbox and type header of text and it will be focus to select
example type d -> D will focus to select
I have option typeAhead : true, but not working.
Upvotes: 1
Views: 1014