Is there a way of using jQuery UI autocomplete not to open a suggestion pulldown but populating an existing select box?
A similar workaround can be done with
http://www.barelyfitz.com/projects/filterlist/
or
http://andrew.hedges.name/experiments/narrowing/
But can we use jQuery UI?
At last I’ve figured this out after many hours. After redigging autocomplete’s data bind as Bouillou redirected me I did these to achieve my goal.
First, I replaced the search function by adding mine for adding a line for cleaning all previous select box contents. Here is my new search function:
I then tweaked
.databinding and_renderItem.return $('');is breaking the process and only returns one suggestion with a null suggestion box. (Which I don’t want to see either.)Then I changed the original
return(.....)in_renderItemfunction to this:You can see a sample screen result below.