Hey I'm trying to return a message when there are no results for the users current query! i know i need to tap into the keyup event, but it looks like the plugin is using it
|
You could try supplying a parse option (function to handle data parsing) and do what you need when no results are returned to parse. This example assumes you're getting back an array of JSON objects that contain FullName and Address attributes.
|
|||||
|
|
|
This question is really out of date, anyways I'm working with the new jQuery UI 1.8.16, autocomplete is now pretty different:http://jqueryui.com/demos/autocomplete/#default Anyways if you're trying to the do the same thing as the question asks, there is no more parse function, as far as I know there is no function that is called with the search results. The way I managed to pull this off is by overriding the autocomplete's filter function - Note: this will affect all your autocompletes
The function is slightly modified from the source, the grep call is the same, but if there are no results I add an object with a value of null, then I override the select calls to check for a null value. This gives you an effect where if you keep typing and no matches are found you get the 'no matches found' item in the dropdown, which is pretty cool. To override the select calls see jQuery UI Autocomplete disable Select & Close events
Since I use this on all my autocompletes on a page, make sure you check if value is null first! Before you try to reference keys that aren't there. |
|||
|
|
I'm using the following code for the same purpose (the message is shown in the autocomplete list):
|
||||
|
|
|
You can also utilize the "response" event to examine this. Simple but powerful. http://api.jqueryui.com/autocomplete/#event-response
|
|||
|
|