web-dev-qa-db-ja.com

Chosen JSから検索ボックスを削除する方法?

Githubでは、選択した選択ボックスで検索ボックスがオプションになったことを示しています。誰かがそれを削除する方法を知っていますか?

21
Tyler

現在のバージョンの Chosen には、検索ボックスの表示を制御する2つの方法があります。どちらも初期化時にオプションとして渡されます。検索ボックスを完全に非表示にするには、オプション"disable_search": trueを渡します。

$("#mySelect").chosen({
  "disable_search": true
});

または、特定の数のオプションがある場合に検索を表示する場合は、オプション"disable_search_threshold": numberOfOptionsを使用します(numberOfOptionsは、検索ボックスを表示する前に必要なオプションの最小数です):

$("#mySelect").chosen({
  "disable_search_threshold": 4
});
jQuery(function($) {
  // Create a set of OPTION elements from some dummy data
  var words = ["lorem", "ipsum", "dolor", "sit", "amet,", "consectetur", "adipiscing", "elit", "duis", "ullamcorper", "diam", "sed", "lorem", "mattis", "tristique", "integer", "pharetra", "sed", "tortor"],
      options = $($.map(words, function(Word) {
        return $(document.createElement('option')).text(Word)[0];
      }));
  $('select').each(function() {
    // Add the dummy OPTIONs to the SELECT
    var select = $(this).append(options.clone());
    // Initialize Chosen, using the options from the
    // `data-chosen-options` attribute
    select.chosen(select.data('chosen-options'));
  });
});
body {
  font-family: sans-serif;
  font-size: .8em; }
label {
  display: block;
  margin-bottom: 1.4em; }
  label .label {
    font-weight: bold;
    margin-bottom: .2em; }
select {
  width: 14em; }
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/chosen/1.5.1/chosen.min.css" rel="stylesheet"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/chosen/1.5.1/chosen.jquery.min.js"></script>

<label>
  <div class='label'>Default behavior</div>
  <select name='default' data-chosen-options='{}'></select>
</label>
<label>
  <div class='label'>No search at all</div>
  <select name='no-search' data-chosen-options='{ "disable_search": true }'></select>
</label>
<label>
  <div class='label'>Search iff more than 4 items</div>
  <select name='conditional-search' data-chosen-options='{ "disable_search_threshold": 4 }'></select>
</label>
<label>
  <div class='label'>Search iff more than 32 items</div>
  <select name='conditional-search' data-chosen-options='{ "disable_search_threshold": 32 }'></select>
</label>
48
thirdender

必要なときにそれを隠すだけ

$('.chzn-search').hide();
2
Vince Lowe

selected.jquery.jsは、クラスdisplay:noneのdivで検索ボックスchzn-searchのスタイルを設定するだけです。

<div class="chzn-search"><input type="text" autocomplete="off" style="display:none;" /></div>
0
Sain Pradeep