The control you are looking for is called a suggester. Try searching google for "ajax suggestion". You will find a few tutorials on how to do it. Here's one: link
SorinV
2009-02-28 16:20:23
The control you are looking for is called a suggester. Try searching google for "ajax suggestion". You will find a few tutorials on how to do it. Here's one: link
You probably need to make each returned search result JavaScript-enabled so that with an OnClick it fills its value into the input text. Having the text-input element identified with an id
-property would help targeting it a bit. I'm sure that you can figure out the rest. I've started to like JQuery with exactly these kinds of tasks.
You also probably want to have the results to have the CSS rule "cursor: pointer
" so that it looks like a clickable item.