Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Im trying to build my dropdown menu using the plugin Chosen for Multiple Select . Here's to behavior I'm based on:

http://jsfiddle.net/JfLvA/

So, instead of having 3 harcoded < option > in my select. I want this list to be the values of a json array populated by an ajax request. This will be triggered by autocomplete.

So, if the user type "car", im sending the letter via an ajax call, and im getting back an array like that:

[{"id":"2489","name":"carrie"},{"id":"2490","name":"Caroline"},{"id":"2491","name":"Carole"}]

The code:

$(function() {

$(".chzn-select").chosen();
$(".chzn-select-deselect").chosen({allow_single_deselect:true});

$('.chzn-choices input').autocomplete({
   source: function( request, response ) {
      $.ajax({
          url: "/change/name/autocomplete/"+request.term+"/",
          dataType: "json",
          success: function( data ) {
             response( $.map( data, function( item ) {
                $('ul.chzn-results').append('<li class="active-result">' + item.name + '</li>');

          }
       });
    }
});

Result:

I type "car", in the dropdown Im getting "No result for car" and then I have all my results, as I want.

1. Why I'm I getting the "No result" message, cause I can see in my json array and inside my list that I'm getting results.

 -----------------------------

When I delete "car" and enter "sam". The results for "sam" are showing after the "car" results. (Basically, I see the result for both, instead of just having the result of my current search)

2. Im I suppose to clear the ul on keyUp?? Thought the plugin was doing that already

 -----------------------------

When I click on a name to actually select it and add it into the select, Im getting a javascript error inside the chosen.js file

item is undefined
"item.selected = true;" line 732

the link to the plugin: http://harvesthq.github.com/chosen/chosen/chosen.jquery.js

and it's not adding anything inside the select.

3. No idea why this is happening

 -----------------------------

Do you guys have any idea on what I'm I doing something wrong? I'm completly stuck here...!

Oh and by the way, I dont mind changing the plugin source, as it's the only place where I'm using it....

share|improve this question
how abt doing $('ul.chzn-results').empty() before append .try it – Ashirvad Aug 20 '12 at 20:29
now it's returning me the result for only the term I search, but it's returning only 1 result, even if I have 10 in my array – Lelly Aug 20 '12 at 20:37
The solution I found for this was to add $('.ui-autocomplete-input').keyup(function() { $('.chzn-results').empty(); }); But this is just for issue #2 – Lelly Aug 20 '12 at 20:41
you shouldn't be manipulating chzn-choices. You should append the json items you get from your server to your chzn-select field and then invoke $(".chzn-select").trigger("liszt:updated");. – please delete me Dec 2 '12 at 13:57

3 Answers

up vote 7 down vote accepted

try this:

$('.chzn-choices input').autocomplete({
  source: function( request, response ) {
    $.ajax({
      url: "/change/name/autocomplete/"+request.term+"/",
      dataType: "json",
      beforeSend: function(){$('ul.chzn-results').empty();},
      success: function( data ) {
        response( $.map( data, function( item ) {
          $('ul.chzn-results').append('<li class="active-result">' + item.name + '</li>');
        }));
      }
    });
  }
});
share|improve this answer
Yes that solved my issue #2 in a clean way. Thanks! Now, do you have any thoughts on what's happening for #3? The javascript error inside the plugin itself ? – Lelly Aug 20 '12 at 20:52
hey the problem is not with plugin i think.. item is undefined here. can you tell when are you using autocomplete and when are you using chosen – Ashirvad Aug 20 '12 at 20:59
what do you mean? I'M using chosen on autocomplete $('.chzn-choices input').autocomplete({ and im implementing chosen on doc ready $(function() { $(".chzn-select").chosen(); I posted all my code above. – Lelly Aug 20 '12 at 21:03

You can dynamically populate a list via AJAX using the excellent Select2 plugin. From my answer to "Is there a way to dynamically ajax add elements through jquery chosen plugin?":

Take a look at the neat Select2 plugin, which is based on Chosen itself and supports remote data sources (aka AJAX data) and infinite scrolling.

share|improve this answer
this thing looks like the bomb! been looking for something link this... – eggie5 May 1 at 19:35

This might be helpful. You have to just trigger an event.

$("#DropDownID").trigger("liszt:updated");

Where "DropDownID" is ID of .

More info at. http://harvesthq.github.com/chosen/

share|improve this answer
This one helped me. Thank you ! – Ricardo Fiorani Dec 14 '12 at 16:06
Thanks, helped me too. – tersakyan Dec 20 '12 at 1:21

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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