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.
| ||||
|
feedback
|
|
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 | |||||||||||||||||||||
feedback
|
|
this also works:
a combination of @Jörn Zaefferer and @Cheeso's responses. | |||
|
feedback
|
|
Super helpful. Thank you. +1. Here is a light version that sorts on "String must begin with the term":
| |||||
feedback
|
|
for an even easier way, try this:
| |||
|
feedback
|
|
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) | |||||||
feedback
|
|
Wouldn't such monkey patching apply to all instances of any autocomplete used on the page? If you have several, you'd often want different result rendering on each. | |||
|
feedback
|
|
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. | |||
|
feedback
|
|
Thanks Cheeso for the helpful monkey patch. Once little annoyance though - is there a way to make the replacement keep the case of the original text? For example:- Typing 'c' will bring up '*c*alifornia'. Is there a way for it to show '*C*alifornia'? Similarly for letters appearing in the middle of phrases. That would be really nice thanks! | |||
feedback
|
|
Here is a version that does not require any regular expressions and matches multiple results in the label.
| |||
feedback
|