Combo box filter on Extjs4.1.3
Posted
by
saravanakumar
on Programmers
See other posts from Programmers
or by saravanakumar
Published on 2014-08-19T10:00:42Z
Indexed on
2014/08/19
10:29 UTC
Read the original article
Hit count: 246
JavaScript
|extjs
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?
© Programmers or respective owner