Questions tagged [bootstrap-multiselect]

Bootstrap-Multiselect refers to David Stutz's jQuery-based plugin that provides an intuitive user interface for using select inputs with the multiple attribute present.

Bootstrap Multiselect is a jQuery based plugin to provide an intuitive user interface for using select inputs with the multiple attribute present. Instead of a select a bootstrap button will be shown as dropdown menu containing the single options as checkboxes.

This tag is for questions based off the library bootstrap-multiselect (GitHub).

There is a demo page: Bootstrap Multiselect

There is a sample skeleton in jsFiddle.

CDN location

Stack Snippet Starter Pack

$(function() {
    $('.multiselect').multiselect();
});
<link href="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.2/css/bootstrap.css" rel="stylesheet"/>
<link href="http://davidstutz.github.io/bootstrap-multiselect/dist/css/bootstrap-multiselect.css"/>

<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.2/js/bootstrap.js"></script>
<script src="http://davidstutz.github.io/bootstrap-multiselect/dist/js/bootstrap-multiselect.js"></script>

<select class="multiselect" multiple="multiple">
    <option value="cheese">    Cheese     </option>
    <option value="tomatoes">  Tomatoes   </option>
    <option value="mozarella"> Mozzarella </option>
    <option value="mushrooms"> Mushrooms  </option>
    <option value="pepperoni"> Pepperoni  </option>
    <option value="onions">    Onions     </option>
</select>
395 questions
0
votes
1 answer

Bootstrap multiselect

I'm using David bootstrap multiselect http://davidstutz.github.io/bootstrap-multiselect/ and I can't find a way to disable label modification when checkboxes are checked.Eg. of my code: {{#each taskName}}
0
votes
0 answers

bootstrap multiselect style error

I have a styling problem with a bootstrap form component. The component is:
0
votes
1 answer

bootstrap multiselect checkboxes should be visible on the page

I want the bootstrap multiselect to be visible on the page by default and it shouldn't toggle. Its functionality should be similar to default multiselect with check boxes. I added this style to make it look as if it is on the…
Sachin Prasad
  • 5,365
  • 12
  • 54
  • 101
0
votes
1 answer

Nuget Twitter Bootstrap-Multi Select and Nuget Twitter Bootstrap-Select

Nuget Twitter Bootstrap-Multiselect and Nuget Twitter Bootstrap-Select Are they the same package? Or two seperate packages? I need the checkboxlist from Bootstrap-Multiselect, but the only package available on Nuget is Twitter Bootstrap-Select?
-1
votes
1 answer

Auto Dropdown On Load davidstutz bootstrap multiselect

The select plugin I am using is David Stutz Bootstrap Multiselect I am loading the select field through ajax/jquery and it works great but I am struggling to get the select field to initiate the dropdown event on load. Is this possible to do with…
Robert
  • 907
  • 4
  • 13
  • 32
-1
votes
3 answers

Bootstrap Multiselect - add on click/change listener to options

Please look at my example below. How can I add a click or change listener which alerts the value and id of the changed/clicked option (just for example). $(function() { $('.chkveg').multiselect({ includeSelectAllOption: true, …
Black
  • 18,150
  • 39
  • 158
  • 271
1 2 3
26
27