Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm making a web application using ASP and AJAX, and I have a DropDownList with some data. I've used a ListSearchExtender to filter data, and it searchs for the first data with the word contained.

But what I want is not to go to the first occurence of the data but to really filter the data, I mean, if I have this data in the list:

  • abcd
  • aaaa
  • bbbb

and if I type "b", then the new list only must contains "abcd" and "bbbb", instead of contains everything and being selected "abcd", which is the first element which matchs with "b".

Thanks a lot.

PD: when I was typing the Tags before posting the question, I've seen that that's exactly what I'm looking for. When you type a word, it returns a list of words which contains the word typed. SO, it's not necessary to have a DropDownList, I can have a textbox instead

share|improve this question

1 Answer

up vote 0 down vote accepted

You mean like an autocomplete ? If you use jQuery try their autocomplete plugin. It doesn't get any easier than that.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.