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

A complement to the jQuery library Chosen that adds ajax autocomplete

Results 40 ajax-chosen issues
Sort by recently updated
recently updated
newest added

I don't see a reason to use the label instead of the value: ``` selected_values.push($(this).val() + "-" + $(this).text()); ``` Why not just use: ``` selected_values.push($(this).val()) ``` I was having...

The js code example for grouped results expects groups to have a 'name', not a 'text', as provided in the JSON example. I slipped up on this as I built...

This change fixes a bug where edits to the field performed while a search is in progress get messed up when a search completes. This is an alternate fix for...

This PR makes the necessary changes to Ajax Chosen to make it compatible with Chosen 1.0.0 (but not compatible anymore with 0.x versions). A quote from the Chosen 1.0.0 release...

Hello at all, I want to install this nice plugin. But I fount noting for this topic. Hope someone can help me. Thanks Michael

Is possible to make universal `.ajax-chzn-select` class, which will be loading URL attribute from HTML element? Something like this: ``` $(".ajax-chzn-select").ajaxChosen method: "GET" dataType: "json" url: $(this).data("url") , (data) ->...

The upstream/relied-upon Chosen library does not either though I have created [a pull request](https://github.com/harvesthq/chosen/pull/1603) to fix that (along with issue [#1601](https://github.com/harvesthq/chosen/issues/1601). A patch to ajax-chosen is fairly straight forward and...

Hello, I am using your plugin. I have very annoying problem. When the usre type fast (so web requests are being sent). Some times the searchbox displays incorrect filters -...

Hi, i am trying to implment ajax-chosen in my webpage using a webservice so that i can populate the select control with values when the user types in the search...

WooCommerce apparently uses ajaxChosen and I've been noticing that when the results are returned it (unfortunately) allows you to add the same selection multiple times. Is there some way to...