Just wanted to know if there already is plugin for this, otherwise I am going to code myself. Following is my exact requirement.

Say I have a dropdown list like this -

<select id="values" name="country">
  <option value="1">Hello world</option>
  <option value="2">Hello there</option>
  <option value="3">Hello again</option>

  <option value="4">Andorra</option>
  <option value="5">Argentina</option>
  <option value="6">Armenia</option>
  <option value="7">Aruba</option>
  <option value="8">Australia</option>
  <option value="9">Austria</option>
  ...
</select>

And there is an input field for the user to filter the dropdown contents. So it looks like this in the beginning -

enter image description here

Use Cases (Requirements)

Obvious case of single word entry -> User enters "Hello"

Result should have only options containing "Hello"

<select id="values" name="country">
      <option value="1">Hello world</option>
      <option value="2">Hello there</option>
      <option value="3">Hello again</option>
</select>

When Multiple words entered -> e.g. "Hello again", OR logic should be applied on the options and options containing any of the words should be remaining.

<select id="values" name="country">
  <option value="3">Hello again</option>
  <option value="2">Hello there</option>
  <option value="1">Hello world</option>      
</select>

A further enhancement which I am looking for is to group the results on the basis of number of words matched, all words matches at the top, followed by lesser words matches till the end, something like this -

enter image description here

I know this is a very specific requirement, but still gave a try...

I checked this question Jquery: Filter dropdown list as you type and some plugin demos given there, but did not find exactly what I am looking for. The first part JQuery UI MultiSelect has the OR search logic I am looking for, but without the grouping. But that needs jquery 1.5 and the older version which works with jquery 1.3 does not have the input field.

link|improve this question

71% accept rate
1  
jQuery 1.3 was superceded a year and a half ago (a reasonably long time in web time). Lots of bugs have been fixed since then, and a fair bit of new functionality added. I'd invest some time in upgrading, rather than spending that time trying to find plug-ins for the increasingly out-of-date version. FWIW. Obviously, if you really can't upgrade right now, you really can't, but... – T.J. Crowder Jul 28 '11 at 7:31
feedback

1 Answer

My honest opinion would be that the best route here would be to write your own custom code for this problem. jQuery (use 1.6 by the way) is very powerful and can solve your issue but finding a specific plugin which meets your needs exactly is unlikely.

Maybe you should take an already existing plugin such as:

http://docs.jquery.com/Plugins/autocomplete

and then reconfigure it to show the results in the way you want. Then publish your code back to the community and help to add to the rich collection of plugins available.

Just a thought.

link|improve this answer
I appreciate your honest opinion. I am trying to write a plugin right now. Little stuck with the sorting logic... how exactly to do it... Please check my question stackoverflow.com/questions/6857969/… – Sandeepan Nath Jul 28 '11 at 12:05
feedback

Your Answer

 
or
required, but never shown

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