2017-06-17 86 views
0

由於我的Select2下拉列表默認行爲將根據選擇調整寬度並弄亂我的框架,所以我希望它不要包裝文本。 我試過幾種組合沒有結果(見下文)Select2:如何使列表不包含在下拉列表中和多個選擇

var $select1 = $('<select/>', { 
    //'class': "form-control", 
    'class': displaySearchClass, 
    'id': cbxID1, 
    //'width': largeurMenu, 
    'multiple': 'multiple', 
    //'white-space': 'normal!important', 
    //'dropdownAutoWidth' : 'true', 
    //'overflow': 'hidden', 
    //'text-overflow': 'ellipsis', 
    //'white-space': 'nowrap !important', 
}); 
下面

是我的問題的截圖和其他的什麼,我希望它看起來像 Default behavior

What I want to achieve

回答

0

試試這個:

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

From

相關問題