2016-03-25 14 views
0

select2でプレースホルダを使用しています。問題は選択コントロールに1つのオプションしかない場合に選択できません。このオプションをクリックすると、常にプレースホルダが表示されます。最初のオプションが既に選択されているようです。Select2は1つのオプションがあるときは選択しません

This is how I see the option

<div class="form-group "> 
 
    <label class="control-label requiredField" for="contatoCondominio"> 
 
     Requisitante <span class="asteriskField">*</span> <i class="fa fa-circle-o-notch fa-spin" style="visibility: hidden;" id="contato-loading"></i> 
 
    </label> 
 
    <select class="select form-control select2-hidden-accessible" id="contatoCondominio" name="contatoCondominio" tabindex="-1" aria-hidden="true"> 
 
    \t <option value="14">Nome do Sindico</option> 
 
\t </select> 
 
\t <span class="select2 select2-container select2-container--bootstrap select2-container--below" dir="ltr" style="width: 988px;"> 
 
\t \t <span class="selection"> 
 
\t \t \t <span class="select2-selection select2-selection--single" role="combobox" aria-haspopup="true" aria-expanded="false" tabindex="0" aria-labelledby="select2-contatoCondominio-container"> 
 
\t \t \t \t <span class="select2-selection__rendered" id="select2-contatoCondominio-container"> 
 
\t \t \t \t \t <span class="select2-selection__placeholder">Selecione um opção</span> 
 
\t \t \t \t </span> 
 
\t \t \t \t <span class="select2-selection__arrow" role="presentation"> 
 
\t \t \t \t \t <b role="presentation"></b> 
 
\t \t \t \t </span> 
 
\t \t \t </span> 
 
\t \t </span> 
 
\t \t <span class="dropdown-wrapper" aria-hidden="true"></span> 
 
\t </span> 
 
</div>

おかげ

答えて

0

プレースホルダを使用する際に必要な空白のオプションを逃しています。ブラウザによって自動的に選択され、Select2が何をすべきかを知らないので、単一の結果を選択することはできません。

+0

ありがとう@kevinBrown! – Rodoxx

関連する問題