The select decorator component that was missing for Twitter Bootstrap 3.
The following functionality of bselect is default of the
<select>
s you already know. You don't need to do any extra markup or
configuration via JavaScript objects to have them working.
When using it in a initially hidden element like a modal you have .resize() the parent before showing to properly size it
//resize the modal so bselect updates the width $('.modal').on('show.bs.modal', function() { setTimeout(function() { $(this).trigger('resize'); }); });