Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

'x' for deselecting items in jquery chosen does not appear

New to chosen I have come across a strange thing. Having a with multiple option selects. I have applied chosen to the list like this

$("#valgteSteder").chosen({
    no_results_text: "No results",
    placeholder_text_single: "-- choose --",
    disable_search: false
});

when I select one or more options I don't get the 'X' to right in the displayed item for deselect. I have tried to search for a solution to in the chosen doc's but to no avail. Any Idea of what I'm doing wrong or missing?

like image 670
Bridgekeeper Avatar asked Jun 21 '14 06:06

Bridgekeeper


1 Answers

Try this

Check chosen.css search-choice-close class and you should have this image chosen-sprite.png and it should be in correct path (folder)

like image 127
Sridhar R Avatar answered Oct 13 '22 01:10

Sridhar R