vote up 0 vote down star

After several failed attempts using ExtJS I have now decided to use javascript.The requirement is to assist a combo box in select tag.If the list contains aa,aaa,aab,abc,bac,cba then if I type 'ab' continuously then it will select 'abc'.Whereas if I type 'a' time gap and then 'b' it will select 'bac' instead of 'abc'. Can anyone tell me whether its possible in js to get what I want?If not js is it possible in Jquery.Please ignore the previous duplicates.

flag

21% accept rate

1 Answer

vote up 0 vote down check

It's possible. You're going to want to track when you your keypress events fire. Capture the time the "a" was entered, and then the time the second key was entered. If it's above a threshold, you want the second letter to be first, and the first letter to come second. If it's below your threshold, you want the first letter first, and the second letter second.

link|flag
Yes exactly.How is it possible.Can you elaborate – Harish Aug 4 at 10:17
Similar question with code-example at stackoverflow.com/questions/1223764 – Jonathan Sampson Aug 4 at 10:24
Do you have onkeyup for Select tag? – Harish Aug 4 at 10:43
You will need to bind this to a textbox, and use the value of the textbox to filter the select options. – Jonathan Sampson Aug 4 at 11:05
bind to a textbox? how is that possible? – Harish Aug 4 at 11:14
show 3 more comments

Your Answer

Get an OpenID
or

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