I'm using jQuery UI's Autocomplete slightly differently than it was probably created to do.

Basically I want to keep all the same functionality, the only difference is that when the suggestion box appears, I don't the suggestion box to hide when a user makes a selection and I also don't want that selection to populate the input box that .autocomplete is attached to.

So, I've been reading through the jQuery UI documentation, and it appears there is a way to disable the Select: and Close: events, but I find the way they have explained it to be very confusing and hence, this is why I'm here asking for help.

My jQuery

$( "#comment" ).autocomplete({
    source: "comments.php",
    minLength: 4,

    // Attempt to remove click/select functionality - may be a better way to do this        
    select: function( event, ui ) {
        return false;
    },
    // Attempt to add custom Class to the open Suggestion box - may be a better way
    open : function (event, ui) {
        $(this).addClass("suggestion-box");
    },
    // Attempt to cancel the Close event, so when someone makes a selection, the box does not close
    close : function (event, ui) {
        return false;   
    }
});

Official jQuery UI documentation

Triggered when an item is selected from the menu; ui.item refers to the selected item. The default action of select is to replace the text field's value with the value of the selected item. Canceling this event prevents the value from being updated, but does not prevent the menu from closing.

Code examples

Supply a callback function to handle the select event as an init option.
$( ".selector" ).autocomplete({
   select: function(event, ui) { ... }
});
Bind to the select event by type: autocompleteselect.
$( ".selector" ).bind( "autocompleteselect", function(event, ui) {
  ...
});

Confusion

What confuses me is that they seem to be suggesting to remove the .autocomplete and replace with .bind("autocompleteselect") - which will disable the autocomplete altogether?

Thank you very much for any help you can give.

link|improve this question

75% accept rate
feedback

2 Answers

up vote 5 down vote accepted

The second syntax using .bind() is simply another way of attaching an event handler to jQueryUI's custom events. This is exactly the same as defining the event handler inside of the widget options (using select: function(event, ui) { })

Imagine if you had several autocomplete widgets on the page and you wanted to execute the same function when any of them raised the "select" event for example:

$(".autocomplete").bind("autocompleteselect", function(event, ui) {
    /* Will occur when any element with an autocomplete widget fires the
     * autocomplete select event.
     */
});

As for cancelling the select event, you have that correct. However, cancelling the close event is a little tougher; it looks like returning false from the event handler won't work (close is fired after the menu is actually closed). You could perform a little hackery and just replace the select function with your own:

var $input = $("input").autocomplete({
    source: ['Hello', 'Goodbye', 'Foo', 'Bar']
});
$input.data("autocomplete").menu.options.selected = function(event, ui) { 
    var item = ui.item.data( "item.autocomplete" );
    $input.focus();
};

Here's a working example of that: http://jsfiddle.net/ZGmyp/

I am not sure what the ramifications are of overriding the close event, but it doesn't look like anything crazy is happening in the simple example. I would say that this is kind of an unnatural use of the widget, so there may be unexpected consequences.

link|improve this answer
Thanks very much for that @Andrew, can you think of a way to cancel the Click / select function, but still change the suggestion box when the input is changed and/or when the user deselects the input box? – thathurtabit May 18 '11 at 12:55
@thathurtabit: for the menu should still update as you type suggestions. What do you mean by changing the suggestion box when the input is deselected though? – Andrew Whitaker May 18 '11 at 13:13
@AndrewWhitaker Thanks for getting back to me, yes, I'm looking for the menu to still update when suggestions are typed in. I've just tried your demo again, and it does update if you type in another suggestion it recognises, but if you type in someone completely different (and it doesn't recognise) it still keeps its previous irrelevant suggestion. Also, when you click outside of the input box (to get rid of its focus) the suggestion box remains open. – thathurtabit May 18 '11 at 13:22
@thathurtabit: I understand--I'll take another look – Andrew Whitaker May 18 '11 at 13:25
Thanks Andrew, really appreciate your help! – thathurtabit May 18 '11 at 13:30
show 5 more comments
feedback

Taking inspiration from Andrews solution, I found a way to keep autocomplete open on selection with less impact on core functionality:

var selected;  //flag indicating a selection has taken place

var $input = $("input").autocomplete({
    source: ['Hello', 'Goodbye', 'Foo', 'Bar'],
    select: function( event, ui ) {
        selected = true;
    }
});

//Override close method - see link below for details
(function(){
   var originalCloseMethod = $input.data("autocomplete").close;
    $input.data("autocomplete").close = function(event) {
        if (!selected){
            //close requested by someone else, let it pass
            originalCloseMethod.apply( this, arguments );
        }
        selected = false;
    };
})();

So the idea is to neuter close method when appropriate, as indicated by selected flag. Having selected flag in global name space probably isn't the best idea, but that's for someone else to improve on :-).

More about overriding methods

link|improve this answer
Fantastic, this helped me a ton – Wes Dec 9 '11 at 17:07
YOU ARE THE MAN! – Trip Mar 12 at 16:43
feedback

Your Answer

 
or
required, but never shown

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