admin管理员组文章数量:1345585
I have used Multiselect of Bootstrap.
My issue is when I select item from options. If name is too long then button width is also increased.
How do I handle Button width after selecting options.
I have used Multiselect of Bootstrap.
My issue is when I select item from options. If name is too long then button width is also increased.
How do I handle Button width after selecting options.
Share Improve this question edited Feb 13, 2017 at 23:00 Tony L. 19.5k8 gold badges72 silver badges68 bronze badges asked Dec 16, 2014 at 11:43 Lalit BhudiyaLalit Bhudiya 4,4184 gold badges29 silver badges32 bronze badges 3- I tried with that before. Carat img is not displaying. – Lalit Bhudiya Commented Dec 16, 2014 at 12:04
- max width with overflow:hidden? – atmd Commented Dec 16, 2014 at 16:53
- I'm not familiar with Bootstrap, but in HTML you can place the <select> in a <div> and set the max-width of the <div> and use overflow: hidden of the <select>. For example: jsfiddle/80Ljcbhy/2 – wbdarby Commented Dec 16, 2014 at 17:28
4 Answers
Reset to default 3.multiselect
gives you a parameter called buttonWidth
. This will keep the width wider when nothing is selected as well. You can put a % in there as well. You can set the width like so:
<script type="text/javascript">
$(document).ready(function() {
$('#yourcontrol').multiselect({
buttonWidth: '100px'
});
//caret is in the middle, switch it to right
$(".caret").css('float', 'right');
$(".caret").css('margin', '8px 0');
});
</script>
Try using below code.
You can set max-width as you want in css.
Javascript:
$('#yourXYZID').multiselect({
buttonText: function(options)
{
var retStr = "";
if (options.length === 0) {
retStr = "None selected";
} else if(options.length <=3){
var textArray = [];
$.each(options,function(key,value){
textArray.push($.trim($(value).html()));
});
retStr = "<div class='pull-left restricted'>"+textArray.join(",")+"</div>";
} else {
retStr = options.length+" selected";
}
return retStr+" <b class='caret'></b>";
}
});
CSS:
.multiselect.dropdown-toggle.btn.btn-default > div.restricted {
margin-right: 5px;
max-width: 100px;
overflow: hidden;
}
Another work around is that in the "buttonText" function in the bootstrap-multiselect.js file, we can set the button text length and then return like this:
if(selected.length>20){
return selected.substr(0, 20); //if the text is too long, then this if statement will be executed
}
else{
return selected.substr(0, selected.length - this.delimiterText.length);
}
/*Bootstrap adds extra characters for the selected option.For example: the length of the option 'peter' will actually be 14 because of the delimiter and extra spaces. So you may want to set a bigger number in the if statement*/
Note: In the actual code, the return statement is like below:
return selected.substr(0, selected.length - this.delimiterText.length);
I had the same problem and I solved it a quicker way I believe. so you have your multiselect instantiation like this:
$('#anyID').multiselect({
and then some properties like
maxHeight:'300px'
well if you want to change button width upon a certain event. Do this:
buttonWidth:function(){
if(something happens)
return '300px'; // value chosen randomly
else
return "150px"; // value chosen randomly
},
and that way you would have
FINAL MULTISELECT
$('#anyID').multiselect({
maxHeight:'300px',
buttonWidth:function(){
if(something happens)
return '300px'; // value chosen randomly
else
return "150px"; // value chosen randomly
},
)};
本文标签: javascriptBootstrap Multiselect Button Width IssueStack Overflow
版权声明:本文标题:javascript - Bootstrap Multiselect Button Width Issue - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743736489a2530107.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论