I'm using jQuery UI Autocomplete plug-in. Is there a way to highlight search character sequence in drop-down results?
For example, if I have data: "foo bar" it and I search for "foo" I get "foo bar" in drop down.
|
I'm using jQuery UI Autocomplete plug-in. Is there a way to highlight search character sequence in drop-down results? For example, if I have data: "foo bar" it and I search for "foo" I get "foo bar" in drop down. |
||||
|
|
|
Yes, you can if you monkey-patch autocomplete. In the autocomplete widget included in v1.8rc3 of jQuery UI, the popup of suggestions is created in the _renderMenu function of the autocomplete widget. This function is defined like this:
The _renderItem function is defined like this:
So what you need to do is replace that _renderItem fn with your own creation that produces the desired effect. This technique, redefining an internal function in a library, I have come to learn is called monkey-patching. Here's how I did it:
Now, this is a hack, because
...but it illustrates the main technique, and it works for your basic requirements.
working example: http://jsbin.com/ezifi/4 To preserve the case of the match strings, as opposed to using the case of the typed characters, use this line:
In other words, starting from the original code above, you just need to replace EDIT |
|||||||||||||||||||||
|
|
this also works:
a combination of @Jörn Zaefferer and @Cheeso's responses. |
|||||||||
|
|
Super helpful. Thank you. +1. Here is a light version that sorts on "String must begin with the term":
|
|||||
|
|
jQueryUI 1.9.0 changes how _renderItem works. The code below takes this change into consideration and also shows how I was doing highlight matching using Jörn Zaefferer's jQuery Autocomplete plugin. It will highlight all individual terms in the overall search term. Since moving to using Knockout and jqAuto I found this a much easier way of styling the results.
|
|||
|
|
for an even easier way, try this:
|
|||
|
|
|
Here's a rehash of Ted de Koning's solution. It includes :
|
|||||
|
|
Take a look at the combobox demo, it includes result highlighting: http://jqueryui.com/demos/autocomplete/#combobox The regex in use there also deals with html results. |
|||
|
|
|
Here is a version that does not require any regular expressions and matches multiple results in the label.
|
|||||
|
|
If you instead use the 3rd party plugin, it has a highlight option: http://docs.jquery.com/Plugins/Autocomplete/autocomplete#url_or_dataoptions (see the Options tab) |
|||||||
|
|
Here it goes a functional full example.
|
|||
|
|