ajax-chosen icon indicating copy to clipboard operation
ajax-chosen copied to clipboard

Cannot get ajaxChosen to work, and there are no indications what's wrong

Open chocolata opened this issue 10 years ago • 3 comments

Hi

I've been tinkering all afternoon with ajaxChosen, because I love Chosen, but my option value sets are getting too large. I've also experimented with select2, but it's just too darn slow.

So, I've got the newest version of chosen (1.1.0), and the latest version of ajaxChosen. I initialize ajaxChosen as follows:

$("#add_people").ajaxChosen({ type: 'GET', minTermLength: 3, afterTypeDelay: 300, dataType: 'json', url: 'http://cmcrm.chocolata.be/content/people.php?action=list_options' }, function (data) { var results = []; $.each(data, function (i, val) { results.push({ value: val.value, text: val.text }); }); return results; });

My script has access to this URL, and there is no XSS-prevention going on since my script is on the same domain as the remote url.

The format of my JSON is as follows: [{"value":3,"text":"Valerietje Mortelmans (Actief)"},{"value":9,"text":"Olivier Hopchet (Actief)"},{"value":13,"text":"Wieland Rits (Actief)"},{"value":14,"text":"Melissa Seiffert van der Merwede (Actief)"},{"value":15,"text":"Guillaume de Valensart (Actief)"},{"value":18,"text":"Xavier Cloet (Actief)"},{"value":19,"text":"Brent Lammens (Actief)"},{"value":21,"text":"Coralie Libert (Actief)"},{"value":22,"text":"Laetitia Theus (Actief)"},{"value":23,"text":"Evelien Mollet (Actief)"},{"value":24,"text":"Feya Smets (Actief)"},{"value":25,"text":"Michelle Warneke (Actief)"},{"value":26,"text":"Carolyn Spaenjaers (Actief)"},{"value":27,"text":"Evelien Raes (Actief)"},{"value":28,"text":"Ange Luyten (Actief)"}]

This is what my select box looks like after initialisation:

    I see that chosen has initialized but when I start typing I immediately get "No search results for KEYWORD". There are no errors in my console.

    Can anyone assist so that I don't waste more time on this? :-) Would love to use this. Thanks!

    chocolata avatar Mar 07 '14 16:03 chocolata

    Hi, same problem here!

    SiR-DanieL avatar May 21 '14 19:05 SiR-DanieL

    Found the reply. Read here

    SiR-DanieL avatar May 21 '14 20:05 SiR-DanieL

    @SiR-DanieL this is not working

    cinder92 avatar Nov 08 '17 20:11 cinder92