I'm trying to find a working example of the twitter bootstrap typeahead element that will make an ajax call to populate it's dropdown.

I have an existing working jquery autocomplete example which defines the ajax url to and how to process the reply

<script type="text/javascript">
//<![CDATA[
$(document).ready(function() {
    var options = { minChars:3, max:20 };
    $("#runnerquery").autocomplete('./index/runnerfilter/format/html',options).result(
            function(event, data, formatted)
                {
                    window.location = "./runner/index/id/"+data[1];
                }
            );
       ..

What do i need change to convert this to the typeahead example?

<script type="text/javascript">
//<![CDATA[
$(document).ready(function() {
    var options = { source:'/index/runnerfilter/format/html', items:5 };
    $("#runnerquery").textahead(options).result(
            function(event, data, formatted)
                {
                    window.location = "./runner/index/id/"+data[1];
                }
            );
       ..

I'm going to wait for the 'Add remote sources support for typeahead' issue to be resolved.

link|improve this question

63% accept rate
To be more specific i'm wondering how the autocomplete options and result handling function map to the textahead options? Is there a set of defined textalert result handling functions that can be overridden, or are the method named inherited from the underlying jquery api. – emeraldjava Feb 10 at 22:46
feedback

4 Answers

up vote 24 down vote accepted

You can use the BS Typeahead fork, it supports ajax calls. Then you will be able to write:

$('.typeahead').typeahead({
    source: function (typeahead, query) {
        return $.post('/typeahead', { query: query }, function (data) {
            return typeahead.process(data);
        });
    }
});
link|improve this answer
thanks... helped a lot... nice and simple... – garmoncheg Mar 15 at 20:00
jQuery's "intelligent guess" for the return type of the POST data was not working when I returned, for example, ["aardvark", "apple"]. I had to explicitly set the dataType parameter in the $.post call. See jQuery.post(). – rfausak Mar 19 at 20:47
@rfausak Alternatively, set the Content-type header to application/json – rfausak Mar 19 at 20:51
feedback

I've augmented the original typeahead Bootstrap plugin with ajax capabilities.

Here's the github repo: Ajax-Typeahead

link|improve this answer
I've looked at Gudbergur's code; frankly, I liked this one best. It's a bit more friendly and offers more functionality. Good job Paul! Only thing I would suggest is in your README remind the user that they need to parse their JSON-data into JS in order for your code to be able to use it correctly. I'd assumed you were parsing it for me so that hung me up for a bit. Otherwise, pretty nice, thank you! :) – Bane May 10 at 18:35
1  
Your server returns a string instead of a JSON object. jQuery's $.ajax() is used to make the call, and it takes care of the parsing. – Paul Warelis May 11 at 22:27
absolutely correct, thank you for the catch! :) This plugin works very well. – Bane May 14 at 19:11
feedback

I did some modifications on the jquery-ui.min.js:

//Line 319 ORIG:
this.menu=d("<ul></ul>").addClass("ui-autocomplete").appendTo(d(...
// NEW:
this.menu=d("<ul></ul>").addClass("ui-autocomplete").addClass("typeahead").addClass("dropdown-menu").appendTo(d(...

// Line 328 ORIG:
this.element.addClass("ui-menu ui-widget ui-widget-content ui-corner-all").attr...
// NEW:this.element.attr....

// Line 329 ORIG:
this.active=a.eq(0).children("a")
this.active.children("a")
// NEW:
this.active=a.eq(0).addClass("active").children("a")
this.active.removeClass("active").children("a")`

and add following css

.dropdown-menu {
    max-width: 920px;
}
.ui-menu-item {
    cursor: pointer;        
}

Works perfect.

link|improve this answer
which version of jquery ui min are you using? – emeraldjava Feb 14 at 10:30
If you need this for jQuery 1.7.1 and jQuery UI 1.8.16 then I have created a GIST based on the above fix that shows where to change the jQuery UI File. gist.github.com/1884819 - lines are commented with //modified – Richard Hollis Feb 22 at 12:35
jQuery v1.7.1 and jQuery UI 1.8.13 - cheers – bmoers Feb 25 at 23:04
feedback

I don't have a working example for you nor do I have a very clean solution, but let me tell you what I've found.

If you look at the javascript code for TypeAhead it looks like this:

items = $.grep(this.source, function (item) {
    if (that.matcher(item)) return item
  })

This code uses the jQuery "grep" method to match an element in the source array. I didn't see any places you could hook in an AJAX call, so there's not a "clean" solution to this.

However, one somewhat hacky way that you can do this is to take advantage of the way the grep method works in jQuery. The first argument to grep is the source array and the second argument is a function that is used to match the source array (notice Bootstrap calls the "matcher" you provided when you initialized it). What you could do is set the source to a dummy one-element array and define the matcher as a function with an AJAX call in it. That way, it will run the AJAX call just once (since your source array only has one element in it).

This solution is not only hacky, but it will suffer from performance issues since the TypeAhead code is designed to do a lookup on every key press (AJAX calls should really only happen on every few keystrokes or after a certain amount of idle time). My advice is to give it a try, but stick with either a different autocomplete library or only use this for non-AJAX situations if you run into any problems.

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.