set the width of select2 input (through Angular-ui directive) set the width of select2 input (through Angular-ui directive) angularjs angularjs

set the width of select2 input (through Angular-ui directive)


In my case the select2 would open correctly if there was zero or more pills.

But if there was one or more pills, and I deleted them all, it would shrink to the smallest width. My solution was simply:

$("#myselect").select2({ width: '100%' });      


You need to specify the attribute width to resolve in order to preserve element width

$(document).ready(function() {     $("#myselect").select2({ width: 'resolve' });           });


This is an old question but new info is still worth posting...

Starting with Select2 version 3.4.0 there is an attribute dropdownAutoWidth which solves the problem and handles all the odd cases. Note it is not on by default. It resizes dynamically as the user makes selections, it adds width for allowClear if that attribute is used, and it handles placeholder text properly too.

$("#some_select_id").select2({    dropdownAutoWidth : true});