I have a jQuery UI Autocomplete control that fires an Ajax request when minLength = 3. The problem is as follows: Say I enter "fic" as the initial search term - this is fine. The request fires and results are returned. I decide that I don't want to select any of the results and then re-enter the same search again (fic). This time no Ajax request fires!
My code is shown below:
// ... do request
$("#reportSearch").autocomplete({
delay: 50,
minLength: 3,
source: function(q, add){
$.ajaxSetup ({ cache: false});
$.ajax({
type: "GET",
url: K_URL_REQUEST
So basically the "source" callback is not fired in the second scenario I described above. It appeared that the reason for this was that the autocomplete control was holding onto the previous search term and because it matched - was not triggering a search:
// Taken from jquery-ui-1.8.4.custom.min.js
if (a.term != a.element.val()) { // *** THE MATCH IS HERE
//console.log("a.term != a.element.val(): "+a.term+", "+a.element.val());
a.selectedItem = null;
a.search(null, c) // *** SEARCH IS TRIGGERED HERE
}
In order to get it to fire each time, I simply reset the search term to null after a search returned. This way it worked as expected.
The thing is I don't understand this behaviour. I would've thought each search should be distinct. There is no caching (or shouldn't be anyway).
So although I've fixed my problem I keep feeling that I have missed something here.
Any ideas anyone? Thanks in advance!
I have a jQuery UI Autocomplete control that fires an Ajax request when minLength = 3. The problem is as follows: Say I enter "fic" as the initial search term - this is fine. The request fires and results are returned. I decide that I don't want to select any of the results and then re-enter the same search again (fic). This time no Ajax request fires!
My code is shown below:
// ... do request
$("#reportSearch").autocomplete({
delay: 50,
minLength: 3,
source: function(q, add){
$.ajaxSetup ({ cache: false});
$.ajax({
type: "GET",
url: K_URL_REQUEST
So basically the "source" callback is not fired in the second scenario I described above. It appeared that the reason for this was that the autocomplete control was holding onto the previous search term and because it matched - was not triggering a search:
// Taken from jquery-ui-1.8.4.custom.min.js
if (a.term != a.element.val()) { // *** THE MATCH IS HERE
//console.log("a.term != a.element.val(): "+a.term+", "+a.element.val());
a.selectedItem = null;
a.search(null, c) // *** SEARCH IS TRIGGERED HERE
}
In order to get it to fire each time, I simply reset the search term to null after a search returned. This way it worked as expected.
The thing is I don't understand this behaviour. I would've thought each search should be distinct. There is no caching (or shouldn't be anyway).
So although I've fixed my problem I keep feeling that I have missed something here.
Any ideas anyone? Thanks in advance!
Share Improve this question asked Oct 18, 2010 at 1:15 peetjpeetj 711 silver badge6 bronze badges 7 | Show 2 more comments5 Answers
Reset to default 7Instead changing the jquery.ui, you can try erasing the value of the property "previous", doing something like this:
$(this).data().autocomplete.previous = null;
I have found a solution to this problem (for info, I am using jQuery UI 1.8.4)
The Autocomplete implementation in the jquery-ui-1.8.4.custom.js has a method defined as _change. By commenting out the if statement, the control always sends the request.
...,
_change: function(event) {
//if (this.previous !== this.element.val()) {
this._trigger("change", event, { item: this.selectedItem });
//}
},
...
i've managed to solve this problem by comment out this if-statement in the source of the jquery ui autocomplete.
// keypress is triggered before the input value is changed
clearTimeout( self.searching );
self.searching = setTimeout(function() {
// only search if the value has changed
//if ( self.term != self.element.val() ) {
self.selectedItem = null;
self.search( null, event );
//}
}, self.options.delay );
Since JQuery UI 1.8+ you can use the widget factory to extend the default behavior of all your autocomplete widgets. Simply include a javascript file with this content after jqueryUI
// Extend jquery UI autocomplete
$.widget( "ui.autocomplete", $.ui.autocomplete, {
_close: function( event ) {
// Calls the original function
var ret = this._super();
// Resets previously used search term
this.term = null;
return ret;
}
});
Great tips here - this is something I've been struggling with for a while.
For me, the only solution that consistently works is a combination of Duncan's and Stefaan's answers above.
search
](docs.jquery.com/UI/Autocomplete#event-search) event look like? As I understand it, the autocomplete should fire in your second scenario. – Peter Ajtai Commented Oct 18, 2010 at 1:44jav
delete it, then enter it again, and it'll still work with this demo ==> jsfiddle.net/KFrQm . – Peter Ajtai Commented Oct 18, 2010 at 1:55