2015-05-18 80 views
0

我想在chosen.js插件中隨時添加值。chosen.js:create_option參數不起作用

github.com/harvesthq/chosen

我找到了解決辦法here,但它不工作。我搜索了所有可用的選項,但未列出there

我的JS是

$('.chosen-select').chosen({ 
    add_new_options: true, 
    disable_search_threshold : 5, 
    no_results_text : "Oops, nothing found!"  
}); 

我這麼想嗎?這裏需要其他參數嗎?爲什麼從可用的選項列表中缺失?

+0

採取從下面的鏈接計算器鏈接完整的解決方案:http://stackoverflow.com/questions/11731932 –

回答

1

我經歷了同樣的過程。您提到的fork的鏈接(選擇/拉/ 166)被合併到選定的根1.4.2中,並可供下載。

應按以下步驟工作:

  • 下載選自1.4.2: https://github.com/koenpunt/chosen/releases
  • 如果你已經在你的項目選的,更換chosen.jquery.js,chosen.jquery.min.js和chosen.css
  • 使用下面的代碼以使用新的create_option:

    $(function() {     
    $(".chzn-select").chosen({ 
        create_option: true,    
        skip_no_results: true 
    }); }); 
    

碼參考:https://github.com/harvesthq/chosen/pull/166

+0

感謝您的詳細信息。這個功能在新版本1.6.2中似乎丟失了。 – pinkvoid