Combo box filter on Extjs4.1.3
- by saravanakumar
I have created a window with combo box.
Combo configuration is
xtype :'combo',
fieldLabel : 'Command',
labelAlign : 'right',
id :'commandInputComboId',
store : commandStore,
displayField: 'command',
valueField : 'id',
width : 500,
enableKeyEvents : true,
allowblank : false,
queryMode: 'local',
typeAhead : true,
triggerAction: 'all',
query filter works for normal data.
But I have data with escape chars like < because I need to show it as '<'
for ex my data is <get-all-users>
Filter apply only when I type < not for <.
How can apply filter on this data?