このplunkr(select2 + angulat-ui)を動作させるのに問題があります。
http://plnkr.co/edit/NkdWUO?p=preview
ローカル設定では、select2が動作しますが、 docs で説明されているように幅を設定できません。使用するには狭すぎます。
ありがとうございました。
編集:そのplnkrを気にしないで、私はここで作業フィドルを見つけました http://jsfiddle.net/pEFy6/
最初の要素の幅に折りたたむのはselect2の動作のようです。 bootstrap class="input-medium"
を使用して幅を設定できました。それでも、angular-uiが構成パラメーターを受け取らない理由はわかりません。
要素の幅を保持するには、解決する属性の幅を指定する必要があります
$(document).ready(function() {
$("#myselect").select2({ width: 'resolve' });
});
私の場合、ゼロ以上の錠剤があればselect2が正しく開きます。
しかし、1つ以上の錠剤があり、それらをすべて削除した場合、それは最小幅に縮小します。私の解決策は単純でした:
$("#myselect").select2({ width: '100%' });
これは古い質問ですが、新しい情報はまだ投稿する価値があります...
Select2バージョン3.4.0以降、問題を解決し、すべての奇妙なケースを処理する属性dropdownAutoWidth
があります。デフォルトではオンになっていないことに注意してください。ユーザーが選択すると動的にサイズが変更され、その属性が使用されている場合はallowClear
の幅が追加され、プレースホルダーテキストも適切に処理されます。
$("#some_select_id").select2({
dropdownAutoWidth : true
});
select2 V4.0.3
<select class="smartsearch" name="search" id="search" style="width:100%;"></select>
次のようにスクリプトにメソッドコンテナcssを追加します。
$("#your_select_id").select2({
containerCss : {"display":"block"}
});
選択した幅をdivの幅と同じに設定します。
Select2の4.0以上を使用しています
$("select").select2({
dropdownAutoWidth: true
});
これらの他のものは機能しませんでした:
幅を「解決」に設定しても機能しませんでした。代わりに、selectに「width:100%」を追加し、次のようにcssを変更しました。
.select2-offscreen {position: fixed !important;}
これは私のために働いた唯一のソリューションでした(私のバージョンは2.2.1です)
class="input-medium"
ブートストラップから。ウィンドウのサイズを変更した後でも、選択は常にコンテナ内にとどまっているため(レスポンシブ)
Select2関数に幅解決オプションを追加します
$(document).ready(function() {
$("#myselect").select2({ width: 'resolve' });
});
以下のCSSをスタイルシートに追加した後
.select2-container {
width: 100% !important;
}
問題をソートします
Select2から独立した簡単なCSSソリューション
//HTML
<select id="" class="input-xlg">
</select>
<input type="text" id="" name="" value="" class="input-lg" />
//CSS
.input-xxsm {
width: 40px!important; //for 2 digits
}
.input-xsm {
width: 60px!important; //for 4 digits
}
.input-sm {
width: 100px!important; //for short options
}
.input-md {
width: 160px!important; //for medium long options
}
.input-lg {
width: 220px!important; //for long options
}
.input-xlg {
width: 300px!important; //for very long options
}
.input-xxlg {
width: 100%!important; //100% of parent
}
このように試すことができます。わたしにはできる
$("#MISSION_ID").select2();
Hide/showまたはajaxリクエストでは、select2プラグインを再初期化する必要があります
例えば:
$("#offialNumberArea").show();
$("#eventNameArea").hide();
$('.selectCriteria').change(function(){
var thisVal = $(this).val();
if(thisVal == 'sailor'){
$("#offialNumberArea").show();
$("#eventNameArea").hide();
}
else
{
$("#offialNumberArea").hide();
$("#eventNameArea").show();
$("#MISSION_ID").select2();
}
});
Bootstrap 4を使用して構築された最近のプロジェクトで、上記の方法をすべて試しましたが、何も機能しませんでした。私のアプローチは、テーブルで100%を取得するためにjQueryを使用してlibraryCSSを編集することでした。
// * Select2 4.0.7
$('.select2-multiple').select2({
// theme: 'bootstrap4', //Doesn't work
// width:'100%', //Doesn't work
width: 'resolve'
});
//The Fix
$('.select2-w-100').parent().find('span')
.removeClass('select2-container')
.css("width", "100%")
.css("flex-grow", "1")
.css("box-sizing", "border-box")
.css("display", "inline-block")
.css("margin", "0")
.css("position", "relative")
.css("vertical-align", "middle")
作業中デモ
$('.select2-multiple').select2({
// theme: 'bootstrap4', //Doesn't work
// width:'100%',//Doens't work
width: 'resolve'
});
//Fix the above style width:100%
$('.select2-w-100').parent().find('span')
.removeClass('select2-container')
.css("width", "100%")
.css("flex-grow", "1")
.css("box-sizing", "border-box")
.css("display", "inline-block")
.css("margin", "0")
.css("position", "relative")
.css("vertical-align", "middle")
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" rel="stylesheet"/>
<link href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.7/css/select2.min.css" rel="stylesheet" />
<div class="table-responsive">
<table class="table">
<thead>
<tr>
<th scope="col" class="w-50">#</th>
<th scope="col" class="w-50">Trade Zones</th>
</tr>
</thead>
<tbody>
<tr>
<td>
1
</td>
<td>
<select class="form-control select2-multiple select2-w-100" name="sellingFees[]"
multiple="multiple">
<option value="1">One</option>
<option value="1">Two</option>
<option value="1">Three</option>
<option value="1">Okay</option>
</select>
</td>
</tr>
</tbody>
</table>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.7/js/select2.min.js"></script>