I am using a JQuery UI auto-complete. I am specifying the min length. If I specify minLength:2 I need to type 2 characters before the service fires. If I specify minLength:1 then I only need to type one character before the source service fires.

However, when I specify minLength:0 I still need to type one character. So whats the point of 0? how is it any different than 1? The expected, and desired, behavior would be for it to fire as soon as the input has focus...?

Ideas?

Update: For the most part karim's solution below works, however when clicking on the input the options come up and when one is clicked the source is resubmitted the empty string rather than the new option that was just selected, so the auto-complete options that come up after selecting an option are than same as if the box had been empty.

link|improve this question

What is the expected behavior anyways when you have minLength:0? – kralco626 Jan 5 '11 at 13:01
Basically, you want all available results to pop up when you focus on the autocomplete field? – karim79 Jan 5 '11 at 13:02
Well, not exactly, but yes. Did I confuse you? I want all results the service returns to pop up. However, this may or may not be all possible results. For instance if my service ranks all remaining possible results and displays only the top ten, It would not display all possible results, but, yes the auto complete would display all results returned to it by the web service... I hope that made sense... :) – kralco626 Jan 5 '11 at 13:06
If you leave off the second parameter to the search invocation, it will use the value from the field (i.e. do not include the empty string): .focus(function() {$(this).autocomplete("search");}); (jQuery's documentation on this operation seems to imply the empty string works, but specifying no parameter works instead) – Dan Fleet May 26 '11 at 3:06
feedback

5 Answers

up vote 10 down vote accepted

Check out the search method documentation:

Triggers a search event, which, when data is available, then will display the suggestions; can be used by a selectbox-like button to open the suggestions when clicked. If no value argument is specified, the current input's value is used. Can be called with an empty string and minLength: 0 to display all items.

This does it:

<input id="autocomplete"/>&nbsp;<input id="submit" type="submit"/>

var source = ['One', 'Two', 'Three', 'Four'];

var firstVal = source[0];

$("input#autocomplete").autocomplete({
    minLength: 0,
    source: source,
}).focus(function() {
    $(this).autocomplete("search", "");
});

Try it out: http://jsfiddle.net/karim79/fYVrD/

link|improve this answer
so something like $("#myAC").onFocus("search","")? - EDIT: I guess your edit answers this question :) Thanks! – kralco626 Jan 5 '11 at 13:09
@kralco626 - just chain a .focus handler to the autocomplete initialisation, as in the above example and demo. – karim79 Jan 5 '11 at 13:11
1  
@karmin - the only issue that I have is that when you click on one of the auto-complete options, it regains focus, which means that it opens the search thing again. suppose I could just have a if(length of text in search box <= 0) in the focus handler... that should do it... – kralco626 Jan 5 '11 at 13:25
1  
@karmin - sorry, the underlying problem was not with your code. It was with my service, which was causing an issue when I did not return anything to the auto-complete. I fixed it and now your solution work beautifully :) – kralco626 Jan 5 '11 at 14:08
2  
@karmin - i'm not sure why, but adding in the if statement actually causes the problem of the auto-complete opening up the results for the empty string again after selecting an option. Doesn't make any sense to me, but without the if it works perfect. With the if, if I click on the input box and select an option, the auto-complete puts the option i selected in the input box. but then shows be the options again as if the input was empty. – kralco626 Jan 5 '11 at 14:11
show 12 more comments
feedback

I understand through experiment why the accepted answer (I up-voted) can be considered slightly incomplete. I've added a little bit of intent to make the UX more combo-box-like:

$('#Carrier').autocomplete(
{
    source: '@Url.Action("AutocompleteCarrier", "Client")',
    minLength: 0,
    select: function (event, data) {
        $(this).autocomplete('disable');
    }
})
.blur(function(){
    $(this).autocomplete('enable');
})
.focus(function () {
    $(this).autocomplete('search', '');
});
link|improve this answer
feedback

the suggestion menu shows up for the second time because clicking on an item in suggestion menu causes text box to regain focus, however the text value is not updated when the focus is fired again.After the textbox regains focus, the suggestion menu is fired.

I dont know how we could fix this, but let me know if anyone of you are facing the similar problem

link|improve this answer
rasx' answer does the job well – Kodak May 16 at 12:06
feedback

I had the same problem, and solved it this way. I think the code below makes it much clearer what is the text that is sent to the autocompletion service when the field gets focus. In particular, it is clear why it works when the field already contains something.

$(function() {
$("input#autocomplete").autocomplete({
        source: "completion.html",
        minLength: 0,
        select: function( event, ui ) {}
    });
});
$("input#autocomplete").focus(function() {
    $(this).autocomplete("search", $(this).val());
});
link|improve this answer
feedback

This actually works! Tested on IE, FireFox

$("input#autocomplete").autocomplete({
minLength: 0,
source: source,
}).focus(function() {
        setTimeout( "if ($('#input#autocomplete').val().length == 0) $('#input#autocomplete').autocomplete(\"search\", \"\"); ",1);
    });
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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