mirror of
https://github.com/YunoHost-Apps/limesurvey_ynh.git
synced 2024-09-03 19:36:32 +02:00
1884 lines
68 KiB
HTML
1884 lines
68 KiB
HTML
|
<!DOCTYPE html>
|
|||
|
<html>
|
|||
|
<head>
|
|||
|
<title>Bootstrap Multiselect</title>
|
|||
|
<meta name="robots" content="noindex, nofollow" />
|
|||
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8" />
|
|||
|
<meta name="copyright" content="David Stutz" />
|
|||
|
|
|||
|
<link rel="stylesheet" href="css/bootstrap-3.0.0.min.css" type="text/css">
|
|||
|
<link rel="stylesheet" href="css/bootstrap-multiselect.css" type="text/css">
|
|||
|
<link rel="stylesheet" href="css/prettify.css" type="text/css">
|
|||
|
|
|||
|
<script type="text/javascript" src="js/jquery-2.0.3.min.js"></script>
|
|||
|
<script type="text/javascript" src="js/bootstrap-3.0.0.min.js"></script>
|
|||
|
<script type="text/javascript" src="js/bootstrap-multiselect.js"></script>
|
|||
|
<script type="text/javascript" src="js/prettify.js"></script>
|
|||
|
</head>
|
|||
|
<body>
|
|||
|
<a href="https://github.com/davidstutz/bootstrap-multiselect"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png" alt="Fork me on GitHub"></a>
|
|||
|
|
|||
|
<div class="container">
|
|||
|
<div class="row">
|
|||
|
<div class="col-md-3">
|
|||
|
<div class="well well-sm" style="margin-top:12px;">
|
|||
|
<ul class="nav nav-list">
|
|||
|
<li><a href="#getting-started">Getting Started</a></li>
|
|||
|
<li><a href="#examples">Examples</a></li>
|
|||
|
<li><a href="#options">Options</a></li>
|
|||
|
<li><a href="#methods">Methods</a></li>
|
|||
|
<li><a href="#further-examples">Further Examples</a></li>
|
|||
|
<li><a href="#additional-styling">Additional Styling</a></li>
|
|||
|
<li class="divider"></li>
|
|||
|
<li><a href="tests.html">Tests</a></li>
|
|||
|
</ul>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
<div class="col-md-9">
|
|||
|
<div class="page-header">
|
|||
|
<h1>Bootstrap Multiselect</h1>
|
|||
|
</div>
|
|||
|
<p class="lead">
|
|||
|
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.
|
|||
|
</p>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
|
|||
|
<script>
|
|||
|
$('.dropdown input, .dropdown label').click(function (event) {
|
|||
|
event.stopPropagation();
|
|||
|
});
|
|||
|
</script>
|
|||
|
|
|||
|
<p class="alert alert-info">
|
|||
|
<b>Note:</b> The option names may have changed due to the latest updates.
|
|||
|
</p>
|
|||
|
|
|||
|
<div class="page-header">
|
|||
|
<h1><a id="getting-started"></a>Getting Started</h1>
|
|||
|
</div>
|
|||
|
|
|||
|
<p>
|
|||
|
The following code snippet will help you getting started.
|
|||
|
</p>
|
|||
|
|
|||
|
<pre class="prettyprint linenums">
|
|||
|
<!-- Include Twitter Bootstrap and jQuery: -->
|
|||
|
<link rel="stylesheet" href="css/bootstrap.min.css" type="text/css"/>
|
|||
|
<script type="text/javascript" src="js/jquery.min.js"></script>
|
|||
|
<script type="text/javascript" src="js/bootstrap.min.js"></script>
|
|||
|
|
|||
|
<!-- Include the plugin's CSS and JS: -->
|
|||
|
<script type="text/javascript" src="js/bootstrap-multiselect.js"></script>
|
|||
|
<link rel="stylesheet" href="css/bootstrap-multiselect.css" type="text/css"/>
|
|||
|
|
|||
|
<!-- Build your select: -->
|
|||
|
<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>
|
|||
|
|
|||
|
<!-- Initialize the plugin: -->
|
|||
|
<script type="text/javascript">
|
|||
|
$(document).ready(function() {
|
|||
|
$('.multiselect').multiselect();
|
|||
|
});
|
|||
|
</script>
|
|||
|
</pre>
|
|||
|
|
|||
|
<div class="page-header">
|
|||
|
<h1><a id="examples"></a>Examples</h1>
|
|||
|
</div>
|
|||
|
|
|||
|
<script type="text/javascript">
|
|||
|
$(document).ready(function() {
|
|||
|
window.prettyPrint() && prettyPrint();
|
|||
|
|
|||
|
$('#example1').multiselect();
|
|||
|
|
|||
|
$('#example2').multiselect();
|
|||
|
|
|||
|
$('#example3').multiselect({
|
|||
|
buttonClass: 'btn btn-link'
|
|||
|
});
|
|||
|
|
|||
|
$('#example4').multiselect({
|
|||
|
buttonClass: 'btn btn-default btn-sm'
|
|||
|
});
|
|||
|
|
|||
|
$('#example6').multiselect();
|
|||
|
|
|||
|
$('#example9').multiselect({
|
|||
|
onChange:function(element, checked){
|
|||
|
alert('Change event invoked!');
|
|||
|
console.log(element);
|
|||
|
}
|
|||
|
});
|
|||
|
|
|||
|
for (var i = 1; i <= 100; i++) {
|
|||
|
$('#example11').append('<option value="' + i + '">Options ' + i + '</option>');
|
|||
|
}
|
|||
|
$('#example11').multiselect({
|
|||
|
maxHeight: 200
|
|||
|
})
|
|||
|
|
|||
|
$('#example13').multiselect();
|
|||
|
|
|||
|
$('#example14').multiselect({
|
|||
|
buttonWidth: '500px',
|
|||
|
buttonText: function(options) {
|
|||
|
if (options.length == 0) {
|
|||
|
return 'None selected <b class="caret"></b>';
|
|||
|
}
|
|||
|
else {
|
|||
|
var selected = '';
|
|||
|
options.each(function() {
|
|||
|
selected += $(this).text() + ', ';
|
|||
|
});
|
|||
|
return selected.substr(0, selected.length -2) + ' <b class="caret"></b>';
|
|||
|
}
|
|||
|
}
|
|||
|
});
|
|||
|
|
|||
|
$('#example16').multiselect({
|
|||
|
onChange: function(option, checked) {
|
|||
|
if (checked == false) {
|
|||
|
$('#example16').multiselect('select', option.val());
|
|||
|
}
|
|||
|
}
|
|||
|
});
|
|||
|
|
|||
|
$('#example19').multiselect();
|
|||
|
|
|||
|
$('#example20').multiselect({
|
|||
|
selectedClass: null
|
|||
|
});
|
|||
|
|
|||
|
$('#example23').multiselect();
|
|||
|
|
|||
|
$('#example24').multiselect();
|
|||
|
|
|||
|
$('#example25').multiselect({
|
|||
|
dropRight: true,
|
|||
|
buttonWidth: '300px'
|
|||
|
});
|
|||
|
|
|||
|
$('#example27').multiselect({
|
|||
|
includeSelectAllOption: true
|
|||
|
});
|
|||
|
|
|||
|
// Add options for example 28.
|
|||
|
for (var i = 1; i <= 100; i++) {
|
|||
|
$('#example28').append('<option value="' + i + '">' + i + '</option>');
|
|||
|
}
|
|||
|
|
|||
|
$('#example28').multiselect({
|
|||
|
includeSelectAllOption: true,
|
|||
|
enableFiltering: true,
|
|||
|
maxHeight: 150
|
|||
|
});
|
|||
|
|
|||
|
$('#example32').multiselect();
|
|||
|
|
|||
|
$('#example39').multiselect({
|
|||
|
includeSelectAllOption: true,
|
|||
|
enableCaseInsensitiveFiltering: true
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
<p>
|
|||
|
The best way learning from the examples is using firebug, chrome developer tools or similar tools for your browser. Examine the generated markup and used javascript code.
|
|||
|
</p>
|
|||
|
<table class="table table-striped">
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<select id="example1">
|
|||
|
<option value="cheese" selected>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>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
Normal select. The plugin will do single selection using radio buttons rather than multiple selection using checkboxes.
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<select id="example2" multiple="multiple">
|
|||
|
<option value="cheese" selected>Cheese</option>
|
|||
|
<option value="tomatoes" selected>Tomatoes</option>
|
|||
|
<option value="mozarella" selected>Mozzarella</option>
|
|||
|
<option value="mushrooms">Mushrooms</option>
|
|||
|
<option value="pepperoni">Pepperoni</option>
|
|||
|
<option value="onions">Onions</option>
|
|||
|
</select>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
Select with preselected options: <code><option value="cheese" selected>Cheese</option></code>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<select id="example27" 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>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
Multiselect with a 'Select all' option
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<select id="example28" multiple="multiple"></select>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
Multiselect with a 'Select all' option and filtering enabled using the <code>enableFiltering</code> option.
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<select id="example3" 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>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
As link using <code>buttonClass: 'btn btn-link'</code>.
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<select id="example4" 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>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
Small button using <code>buttonClass: 'btn btn-default btn-sm'</code>.
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<div class="input-group btn-group">
|
|||
|
<span class="input-group-addon"><b class="glyphicon glyphicon-list-alt"></b></span>
|
|||
|
<select id="example6" 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>
|
|||
|
</div>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
Multiple select within a group with add-ons and default container for the plugin: <code>buttonContainer: '<div class="btn-group" />'</code>.
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<select id="example9" 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>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
Using the <code>onChange</code> option you can add an event handler to the change event. The event handler gets the selected option as first parameter and a variable saying whether the option is checked or not as second one.
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<select id="example11" multiple="multiple">
|
|||
|
|
|||
|
</select>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
For long option lists the <code>maxHeight</code> option can be set.
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<select id="example13" multiple="multiple">
|
|||
|
<option value="enabled1">Enabled 1</option>
|
|||
|
<option value="enabled2">Enabled 2</option>
|
|||
|
<option value="disabled2" disabled="disabled">Disabled 1</option>
|
|||
|
</select>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
The plugin supports disabled options, too: <code>disabled="disabled"</code>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<select id="example14" 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>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
Use the <code>buttonWidth</code> option to adjust the width of the button.
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<select id="example16" 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>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
Using the <code>onChange</code> option to prevent user from deselecting selected options.
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<select id="example19" multiple="multiple">
|
|||
|
<optgroup label="Mathematics">
|
|||
|
<option value="analysis">Analysis</option>
|
|||
|
<option value="algebra">Linear Algebra</option>
|
|||
|
<option value="discrete">Discrete Mathematics</option>
|
|||
|
<option value="numerical">Numerical Analysis</option>
|
|||
|
<option value="probability">Probability Theory</option>
|
|||
|
</optgroup>
|
|||
|
<optgroup label="Computer Science">
|
|||
|
<option value="programming">Introduction to Programming</option>
|
|||
|
<option value="automata">Automata Theory</option>
|
|||
|
<option value="complexity">Complexity Theory</option>
|
|||
|
<option value="software">Software Engineering</option>
|
|||
|
</optgroup>
|
|||
|
</select>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
Option groups are detected automatically and for each option group an header element is added: <code><optgroup label="Mathematics">...</optgroup></code>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<select id="example23" multiple="multiple">
|
|||
|
<option value="lab">Lab Course</option>
|
|||
|
<option value="proseminar">Proseminar</option>
|
|||
|
<optgroup label="Mathematics">
|
|||
|
<option value="analysis">Analysis</option>
|
|||
|
<option value="algebra">Linear Algebra</option>
|
|||
|
<option value="discrete">Discrete Mathematics</option>
|
|||
|
<option value="numerical">Numerical Analysis</option>
|
|||
|
<option value="probability">Probability Theory</option>
|
|||
|
</optgroup>
|
|||
|
<optgroup label="Computer Science">
|
|||
|
<option value="programming">Introduction to Programming</option>
|
|||
|
<option value="automata">Automata Theory</option>
|
|||
|
<option value="complexity">Complexity Theory</option>
|
|||
|
<option value="software">Software Engineering</option>
|
|||
|
</optgroup>
|
|||
|
</select>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
Option groups and options without any group are supported simultaneously.
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<select id="example20" 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>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
Using the <code>selectedClass</code> option to turn off the active class for selected options.
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<select id="example24" multiple="multiple">
|
|||
|
<option value="analysis" label="Ana">Analysis</option>
|
|||
|
<option value="algebra" label="LA">Linear Algebra</option>
|
|||
|
<option value="discrete" label="Discrete">Discrete Mathematics</option>
|
|||
|
<option value="numerical" label="NumA">Numerical Analysis</option>
|
|||
|
<option value="probability" label="Proba">Probability Theory</option>
|
|||
|
</select>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
Specifiy an alternaitve label for the options: <code><option label="label"></option></code>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<div class="pull-left">
|
|||
|
<select id="example25" multiple="multiple">
|
|||
|
<option value="analysis" label="Ana">Analysis</option>
|
|||
|
<option value="algebra" label="LA">Linear Algebra</option>
|
|||
|
<option value="discrete" label="Discrete">Discrete Mathematics</option>
|
|||
|
<option value="numerical" label="NumA">Numerical Analysis</option>
|
|||
|
<option value="probability" label="Proba">Probability Theory</option>
|
|||
|
</select>
|
|||
|
</div>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
Make the menu drop right instead of dropping left with <code>dropRight</code>.
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<select id="example26" multiple="multiple" data-role="multiselect">
|
|||
|
<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>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
Using the <code>data-role="multiselect"</code> attribute for automatic wireup.
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<select id="example31" multiple="multiple" data-role="multiselect" disabled>
|
|||
|
<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>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
The multiselect will adopt the state of the select: <code><select disabled></select></code>.
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<select id="example32" multiple="multiple" tabindex="1">
|
|||
|
<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>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
The button will keep the <code>tabindex</code> of the select.
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<select id="example39" multiple="multiple">
|
|||
|
<option value="lab">Lab Course</option>
|
|||
|
<option value="proseminar">Proseminar</option>
|
|||
|
<optgroup label="Mathematics">
|
|||
|
<option value="analysis">Analysis</option>
|
|||
|
<option value="algebra">Linear Algebra</option>
|
|||
|
<option value="discrete">Discrete Mathematics</option>
|
|||
|
<option value="numerical">Numerical Analysis</option>
|
|||
|
<option value="probability">Probability Theory</option>
|
|||
|
</optgroup>
|
|||
|
<optgroup label="Computer Science">
|
|||
|
<option value="programming">Introduction to Programming</option>
|
|||
|
<option value="automata">Automata Theory</option>
|
|||
|
<option value="complexity">Complexity Theory</option>
|
|||
|
<option value="software">Software Engineering</option>
|
|||
|
</optgroup>
|
|||
|
</select>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
Using <code>optgroups</code>s with filtering and the select all option.
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
</table>
|
|||
|
|
|||
|
<div class="page-header">
|
|||
|
<h1><a id="options"></a>Options</h1>
|
|||
|
</div>
|
|||
|
|
|||
|
<table class="table table-striped">
|
|||
|
<thead>
|
|||
|
<tr>
|
|||
|
<th>Option</th>
|
|||
|
<th width="30%">Explanation</th>
|
|||
|
<th>Usage</th>
|
|||
|
</tr>
|
|||
|
</thead>
|
|||
|
<tbody>
|
|||
|
<tr>
|
|||
|
<td><code>buttonText</code></td>
|
|||
|
<td>A function returning the string displayed if options are selected. All currently selected options and the select are passed as argument. In addition HTML can be added to the button, for example the caret icon seen in the examples.</td>
|
|||
|
<td>
|
|||
|
<pre class="prettyprint linenums">
|
|||
|
<script type="text/javascript">
|
|||
|
$(document).ready(function() {
|
|||
|
$('.multiselect').multiselect({
|
|||
|
buttonText: function(options, select) {
|
|||
|
if (options.length == 0) {
|
|||
|
return this.nonSelectedText + ' <b class="caret"></b>';
|
|||
|
}
|
|||
|
else {
|
|||
|
if (options.length > this.numberDisplayed) {
|
|||
|
return options.length + ' ' + this.nSelectedText + ' <b class="caret"></b>';
|
|||
|
}
|
|||
|
else {
|
|||
|
var selected = '';
|
|||
|
options.each(function() {
|
|||
|
var label = ($(this).attr('label') !== undefined) ? $(this).attr('label') : $(this).html();
|
|||
|
|
|||
|
selected += label + ', ';
|
|||
|
});
|
|||
|
return selected.substr(0, selected.length - 2) + ' <b class="caret"></b>';
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
</pre>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><code>numberDisplayed</code></td>
|
|||
|
<td>This option can be used to define the number of displayed option before the text defined in <code>nSelectedText</code> is used. This option may not be available when using a custom <code>buttonText</code> function.</td>
|
|||
|
<td>
|
|||
|
<pre class="prettyprint linenums">
|
|||
|
<script type="text/javascript">
|
|||
|
$(document).ready(function() {
|
|||
|
$('.multiselect').multiselect({
|
|||
|
numberDisplayed: 4
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
</pre>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><code>buttonTitle</code></td>
|
|||
|
<td>Function defining the title of the button. Similar to the <code>buttonText</code> option.</td>
|
|||
|
<td>
|
|||
|
<pre class="prettyprint linenums">
|
|||
|
<script type="text/javascript">
|
|||
|
$(document).ready(function() {
|
|||
|
$('.multiselect').multiselect({
|
|||
|
buttonTitle: function(options, select) {
|
|||
|
var selected = '';
|
|||
|
options.each(function () {
|
|||
|
selected += $(this).text() + ', ';
|
|||
|
});
|
|||
|
return selected.substr(0, selected.length - 2);
|
|||
|
},
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
</pre>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><code>buttonClass</code></td>
|
|||
|
<td>The class of the dropdown button. Default: <code>btn</code>.</td>
|
|||
|
<td>
|
|||
|
<pre class="prettyprint linenums">
|
|||
|
<script type="text/javascript">
|
|||
|
$(document).ready(function() {
|
|||
|
$('.multiselect').multiselect({
|
|||
|
buttonClass: 'btn-primary btn-lg'
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
</pre>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><code>buttonWidth</code></td>
|
|||
|
<td>
|
|||
|
The width of the dropdown button. Default: <code>auto</code>.
|
|||
|
Allowed formats:
|
|||
|
<ul>
|
|||
|
<li><code>100px</code></li>
|
|||
|
<li><code>50%</code></li>
|
|||
|
<li><code>auto</code></li>
|
|||
|
</ul>
|
|||
|
If the width is defined using CSS the option should be set to <code>false</code>.
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<pre class="prettyprint linenums">
|
|||
|
<script type="text/javascript">
|
|||
|
$(document).ready(function() {
|
|||
|
$('.multiselect').multiselect({
|
|||
|
buttonWidth: '300px'
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
</pre>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><code>buttonContainer</code></td>
|
|||
|
<td>
|
|||
|
The used container holding both the dropdown button and the dropdown menu. Default: <code><div class="btn-group" /></code>.
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<pre class="prettyprint linenums">
|
|||
|
<script type="text/javascript">
|
|||
|
$(document).ready(function() {
|
|||
|
$('.multiselect').multiselect({
|
|||
|
buttonContainer: '<span class="dropdown" />'
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
</pre>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><code>label</code></td>
|
|||
|
<td>Function to write the label of the item.</td>
|
|||
|
<td>
|
|||
|
<pre class="prettyprint linenums">
|
|||
|
<script type="text/javascript">
|
|||
|
$(document).ready(function() {
|
|||
|
$('.multiselect').multiselect({
|
|||
|
label: function(element) {
|
|||
|
return $(element).html()+' ('+$(element).val()+')';
|
|||
|
}
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
</pre>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><code>selectedClass</code></td>
|
|||
|
<td>The class applied to the parent <li> of selected items. Default: <code>active</code>.</td>
|
|||
|
<td>
|
|||
|
<pre class="prettyprint linenums">
|
|||
|
<script type="text/javascript">
|
|||
|
$(document).ready(function() {
|
|||
|
$('.multiselect').multiselect({
|
|||
|
selectedClass: null
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
</pre>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><code>onChange</code></td>
|
|||
|
<td>
|
|||
|
This event handler is triggered when the selected options are changed.
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<pre class="prettyprint linenums">
|
|||
|
<script type="text/javascript">
|
|||
|
$(document).ready(function() {
|
|||
|
$('.multiselect').multiselect({
|
|||
|
onChange: function(element, checked) {
|
|||
|
alert('Change event invoked!');
|
|||
|
}
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
</pre>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><code>onDropdownShow</code></td>
|
|||
|
<td>
|
|||
|
This event handler is triggered when the dropdown are shown.
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<pre class="prettyprint linenums">
|
|||
|
<script type="text/javascript">
|
|||
|
$(document).ready(function() {
|
|||
|
$('.multiselect').multiselect({
|
|||
|
onDropdownShow: function(event) {
|
|||
|
alert('Show event invoked!');
|
|||
|
}
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
</pre>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><code>onDropdownHide</code></td>
|
|||
|
<td>
|
|||
|
This event handler is triggered when the dropdown are hidden.
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<pre class="prettyprint linenums">
|
|||
|
<script type="text/javascript">
|
|||
|
$(document).ready(function() {
|
|||
|
$('.multiselect').multiselect({
|
|||
|
onDropdownHide: function(event) {
|
|||
|
alert('Hide event invoked!');
|
|||
|
}
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
</pre>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><code>maxHeight</code></td>
|
|||
|
<td>
|
|||
|
Used for a long list of options this option defines the maximum height of the dropdown menu. If the size is exceeded a scrollbar will appear.
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<pre class="prettyprint linenums">
|
|||
|
<script type="text/javascript">
|
|||
|
$(document).ready(function() {
|
|||
|
$('.multiselect').multiselect({
|
|||
|
maxHeight: 400
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
</pre>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><code>includeSelectAllOption</code></td>
|
|||
|
<td>
|
|||
|
If set to <code>true</code> a 'Select all' option will be added.
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<pre class="prettyprint linenums">
|
|||
|
<script type="text/javascript">
|
|||
|
$(document).ready(function() {
|
|||
|
$('.multiselect').multiselect({
|
|||
|
includeSelectAllOption: true
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
</pre>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><code>selectAllText</code></td>
|
|||
|
<td>
|
|||
|
The label for the 'Select all' option.
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<pre class="prettyprint linenums">
|
|||
|
<script type="text/javascript">
|
|||
|
$(document).ready(function() {
|
|||
|
$('.multiselect').multiselect({
|
|||
|
selectAllText: true
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
</pre>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><code>selectAllValue</code></td>
|
|||
|
<td>
|
|||
|
The value by which the select all option is identified.
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<pre class="prettyprint linenums">
|
|||
|
<script type="text/javascript">
|
|||
|
$(document).ready(function() {
|
|||
|
$('.multiselect').multiselect({
|
|||
|
selectAllValue: 'multiselect-all',
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
</pre>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><code>enableFiltering</code></td>
|
|||
|
<td>
|
|||
|
If set to <code>true</code> a search field will be added to filter the visible options.
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<pre class="prettyprint linenums">
|
|||
|
<script type="text/javascript">
|
|||
|
$(document).ready(function() {
|
|||
|
$('.multiselect').multiselect({
|
|||
|
enableFiltering: true
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
</pre>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><code>enableCaseInsensitiveFiltering</code></td>
|
|||
|
<td>
|
|||
|
The same as <code>enableFiltering</code> but with case insensitive filtering.
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<pre class="prettyprint linenums">
|
|||
|
<script type="text/javascript">
|
|||
|
$(document).ready(function() {
|
|||
|
$('.multiselect').multiselect({
|
|||
|
enableCaseInsensitiveFiltering: true
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
</pre>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><code>filterPlaceholder</code></td>
|
|||
|
<td>
|
|||
|
The placeholder used in the search field if filtering is enabled.
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<pre class="prettyprint linenums">
|
|||
|
<script type="text/javascript">
|
|||
|
$(document).ready(function() {
|
|||
|
$('.multiselect').multiselect({
|
|||
|
filterPlaceholder: 'Search'
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
</pre>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td><code>dropRight</code></td>
|
|||
|
<td>
|
|||
|
Will make the menu drop right if set to <code>true</code>.
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<pre class="prettyprint linenums">
|
|||
|
<script type="text/javascript">
|
|||
|
$(document).ready(function() {
|
|||
|
$('.multiselect').multiselect({
|
|||
|
dropRight: true
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
</pre>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
</tbody>
|
|||
|
</table>
|
|||
|
|
|||
|
<div class="page-header">
|
|||
|
<h1><a id="methods"></a>Methods</h1>
|
|||
|
</div>
|
|||
|
|
|||
|
<script type="text/javascript">
|
|||
|
$(document).ready(function() {
|
|||
|
$('#example8').multiselect();
|
|||
|
$('#example8-destroy').on('click', function() {
|
|||
|
$('#example8').multiselect('destroy');
|
|||
|
});
|
|||
|
|
|||
|
$('#example10').multiselect();
|
|||
|
$('#example10-select').on('click', function() {
|
|||
|
$('option[value="tomatoes"]', $('#example10')).prop('selected', true);
|
|||
|
$('option[value="tomatoes"]', $('#example10')).attr('selected', 'selected');
|
|||
|
|
|||
|
$('option[value="mushrooms"]', $('#example10')).prop('selected', true);
|
|||
|
$('option[value="mushrooms"]', $('#example10')).attr('selected', 'selected');
|
|||
|
|
|||
|
$('option[value="onions"]', $('#example10')).prop('selected', true);
|
|||
|
$('option[value="onions"]', $('#example10')).attr('selected', 'selected');
|
|||
|
|
|||
|
alert('Selected Tomatoes, Mushrooms and Onions.');
|
|||
|
});
|
|||
|
$('#example10-deselect').on('click', function() {
|
|||
|
$('option', $('#example10')).each(function(element) {
|
|||
|
$(this).removeAttr('selected').prop('selected', false);
|
|||
|
});
|
|||
|
});
|
|||
|
$('#example10-refresh').on('click', function() {
|
|||
|
$('#example10').multiselect('refresh');
|
|||
|
});
|
|||
|
|
|||
|
$('#example12').multiselect({
|
|||
|
enableFiltering: true
|
|||
|
});
|
|||
|
$('#example12-rebuild').on('click', function() {
|
|||
|
$('#example12').multiselect('rebuild');
|
|||
|
});
|
|||
|
$('#example12-add').on('click', function() {
|
|||
|
$('#example12').append('<option value="add1">Addition 1</option><option value="add2">Addition 2</option><option value="add3">Addition 3</option>');
|
|||
|
});
|
|||
|
$('#example12-delete').on('click', function() {
|
|||
|
$('option[value="add1"]', $('#example12')).remove();
|
|||
|
$('option[value="add2"]', $('#example12')).remove();
|
|||
|
$('option[value="add3"]', $('#example12')).remove();
|
|||
|
});
|
|||
|
|
|||
|
$('#example17').multiselect();
|
|||
|
$('#example17-cheese').on('click', function() {
|
|||
|
$('#example17').multiselect('select', 'cheese');
|
|||
|
});
|
|||
|
$('#example17-mushrooms').on('click', function() {
|
|||
|
$('#example17').multiselect('select', 'mushrooms');
|
|||
|
});
|
|||
|
|
|||
|
$('#example18').multiselect();
|
|||
|
$('#example18-cheese').on('click', function() {
|
|||
|
$('#example18').multiselect('deselect', 'cheese');
|
|||
|
});
|
|||
|
$('#example18-mushrooms').on('click', function() {
|
|||
|
$('#example18').multiselect('deselect', 'mushrooms');
|
|||
|
});
|
|||
|
|
|||
|
$('#example35').multiselect();
|
|||
|
$('#example35-disable').on('click', function() {
|
|||
|
$('#example35').multiselect('disable');
|
|||
|
});
|
|||
|
|
|||
|
$('#example36').multiselect();
|
|||
|
$('#example36-enable').on('click', function() {
|
|||
|
$('#example36').multiselect('enable');
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
<table class="table table-striped">
|
|||
|
<tbody>
|
|||
|
<tr>
|
|||
|
<td width="50%">
|
|||
|
<p><code>.multiselect('destroy')</code></p>
|
|||
|
<p>
|
|||
|
This method is used to destroy the plugin on the given element - meaning unbinding the plugin.
|
|||
|
</p>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<div class="btn-group">
|
|||
|
<select id="example8" 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>
|
|||
|
<button id="example8-destroy" class="btn btn-danger">Destroy/Unbind</button>
|
|||
|
</div>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<p><code>.multiselect('refresh')</code></p>
|
|||
|
<p>
|
|||
|
This method is used to refresh the checked checkboxes based on the currently selected options within the select. Click 'Select some options' so select some of the options (meaning added the <code>selected</code> attribute to some of the options). Then click refresh. The plugin will update the checkboxes accordingly.
|
|||
|
</p>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<div class="btn-group">
|
|||
|
<select id="example10" 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>
|
|||
|
<button id="example10-select" class="btn btn-default">Select some options</button>
|
|||
|
<button id="example10-deselect" class="btn btn-default">Deselect all</button>
|
|||
|
<button id="example10-refresh" class="btn btn-primary">Refresh</button>
|
|||
|
</div>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<p><code>.multiselect('rebuild')</code></p>
|
|||
|
<p>
|
|||
|
Rebuilds the whole dropdown menu. All selected options will remain selected (if still existent!).
|
|||
|
</p>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<div class="btn-group">
|
|||
|
<select id="example12" 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>
|
|||
|
<button id="example12-add" class="btn btn-default">Add some options</button>
|
|||
|
<button id="example12-delete" class="btn btn-default">Delete some options</button>
|
|||
|
<button id="example12-rebuild" class="btn btn-primary">Rebuild</button>
|
|||
|
</div>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<p><code>.multiselect('select', value)</code></p>
|
|||
|
<p>
|
|||
|
Selects an option by its value. Works also using an array of values.
|
|||
|
</p>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<div class="btn-group">
|
|||
|
<select id="example17" 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>
|
|||
|
<button id="example17-cheese" class="btn btn-default">Select cheese</button>
|
|||
|
<button id="example17-mushrooms" class="btn btn-default">Select Mushrooms</button>
|
|||
|
</div>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<p><code>.multiselect('deselect', value)</code></p>
|
|||
|
<p>
|
|||
|
Deselect an option by its value. Works also using an array of values.
|
|||
|
</p>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<div class="btn-group">
|
|||
|
<select id="example18" 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>
|
|||
|
<button id="example18-cheese" class="btn btn-default">Deselect cheese</button>
|
|||
|
<button id="example18-mushrooms" class="btn btn-default">Deselect Mushrooms</button>
|
|||
|
</div>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td colspan="2">
|
|||
|
<p><code>.multiselect('dataprovider', data)</code></p>
|
|||
|
<p>
|
|||
|
Provides data for building the select's options the following way:
|
|||
|
</p>
|
|||
|
<pre class="prettyprint linenums">
|
|||
|
var data = [
|
|||
|
{label: "ACNP", value: "ACNP"},
|
|||
|
{label: "test", value: "test"}
|
|||
|
];
|
|||
|
$("#multiselect").multiselect('dataprovider', data);
|
|||
|
</pre>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td colspan="2">
|
|||
|
<p><code>.multiselect('setOptions', options)</code></p>
|
|||
|
<p>
|
|||
|
Used to change configuration after initializing the multiselect. This may be useful in combination with <code>.multiselect('rebuild')</code>.
|
|||
|
</p>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<p><code>.multiselect('disable')</code></p>
|
|||
|
<p>
|
|||
|
Disable both the underlying select and the dropdown button.
|
|||
|
</p>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<div class="btn-group">
|
|||
|
<select id="example35" 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>
|
|||
|
<button id="example35-disable" class="btn btn-default">Disable</button>
|
|||
|
</div>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<p><code>.multiselect('enable')</code></p>
|
|||
|
<p>
|
|||
|
Enable both the underlying select and the dropdown button.
|
|||
|
</p>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<div class="btn-group">
|
|||
|
<select id="example36" multiple="multiple" disabled="disabled">
|
|||
|
<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>
|
|||
|
<button id="example36-enable" class="btn btn-default">Enable</button>
|
|||
|
</div>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
</tbody>
|
|||
|
</table>
|
|||
|
|
|||
|
<div class="page-header">
|
|||
|
<h1><a id="further-examples"></a>Further Examples</h1>
|
|||
|
</div>
|
|||
|
<script type="text/javascript">
|
|||
|
/**
|
|||
|
* Gets whether all the options are selected
|
|||
|
* @param {jQuery} $el
|
|||
|
* @returns {bool}
|
|||
|
*/
|
|||
|
function multiselect_selected($el) {
|
|||
|
var ret = true;
|
|||
|
$('option', $el).each(function(element) {
|
|||
|
if (!!!$(this).prop('selected')) {
|
|||
|
ret = false;
|
|||
|
}
|
|||
|
});
|
|||
|
return ret;
|
|||
|
}
|
|||
|
|
|||
|
/**
|
|||
|
* Selects all the options
|
|||
|
* @param {jQuery} $el
|
|||
|
* @returns {undefined}
|
|||
|
*/
|
|||
|
function multiselect_selectAll($el) {
|
|||
|
$('option', $el).each(function(element) {
|
|||
|
$el.multiselect('select', $(this).val());
|
|||
|
});
|
|||
|
}
|
|||
|
/**
|
|||
|
* Deselects all the options
|
|||
|
* @param {jQuery} $el
|
|||
|
* @returns {undefined}
|
|||
|
*/
|
|||
|
function multiselect_deselectAll($el) {
|
|||
|
$('option', $el).each(function(element) {
|
|||
|
$el.multiselect('deselect', $(this).val());
|
|||
|
});
|
|||
|
}
|
|||
|
|
|||
|
/**
|
|||
|
* Clears all the selected options
|
|||
|
* @param {jQuery} $el
|
|||
|
* @returns {undefined}
|
|||
|
*/
|
|||
|
function multiselect_toggle($el, $btn) {
|
|||
|
if (multiselect_selected($el)) {
|
|||
|
multiselect_deselectAll($el);
|
|||
|
$btn.text("Select All");
|
|||
|
}
|
|||
|
else {
|
|||
|
multiselect_selectAll($el);
|
|||
|
$btn.text("Deselect All");
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
$(document).ready(function() {
|
|||
|
|
|||
|
$('#example21').multiselect();
|
|||
|
$("#example21-toggle").click(function(e) {
|
|||
|
e.preventDefault();
|
|||
|
multiselect_toggle($("#example21"), $(this));
|
|||
|
});
|
|||
|
|
|||
|
$('#example22').multiselect({
|
|||
|
buttonClass: 'btn',
|
|||
|
buttonWidth: 'auto',
|
|||
|
buttonText: function(options) {
|
|||
|
if (options.length == 0) {
|
|||
|
return 'None selected <b class="caret"></b>';
|
|||
|
}
|
|||
|
else if (options.length > 6) {
|
|||
|
return options.length + ' selected <b class="caret"></b>';
|
|||
|
}
|
|||
|
else {
|
|||
|
var selected = '';
|
|||
|
options.each(function() {
|
|||
|
selected += $(this).text() + ', ';
|
|||
|
});
|
|||
|
|
|||
|
return selected.substr(0, selected.length -2) + ' <b class="caret"></b>';
|
|||
|
}
|
|||
|
},
|
|||
|
onChange: function(element, checked) {
|
|||
|
if(checked == true) {
|
|||
|
//action taken here if true
|
|||
|
}
|
|||
|
else if(checked == false) {
|
|||
|
if(confirm('Do you wish to deselect the element?')) {
|
|||
|
//action taken here
|
|||
|
}
|
|||
|
else {
|
|||
|
$("#example22").multiselect('select', element.val());
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
});
|
|||
|
|
|||
|
var firstConfigurationSet = {
|
|||
|
includeSelectAllOption: false,
|
|||
|
enableFiltering: false
|
|||
|
};
|
|||
|
var secondConfigurationSet = {
|
|||
|
includeSelectAllOption: true,
|
|||
|
enableFiltering: true
|
|||
|
};
|
|||
|
|
|||
|
var set = 1;
|
|||
|
$('#example33').multiselect(firstConfigurationSet);
|
|||
|
|
|||
|
function rebuildMultiselect(options) {
|
|||
|
$('#example33').multiselect('setOptions', options);
|
|||
|
$('#example33').multiselect('rebuild');
|
|||
|
}
|
|||
|
|
|||
|
$('#example33-configuration-set').on('click', function(event) {
|
|||
|
switch (set) {
|
|||
|
case 2:
|
|||
|
rebuildMultiselect(firstConfigurationSet);
|
|||
|
|
|||
|
$(this).text('Configuration Set 2');
|
|||
|
set = 1;
|
|||
|
break;
|
|||
|
case 1:
|
|||
|
default:
|
|||
|
rebuildMultiselect(secondConfigurationSet);
|
|||
|
|
|||
|
$(this).text('Configuration Set 1');
|
|||
|
set = 2;
|
|||
|
break;
|
|||
|
|
|||
|
}
|
|||
|
});
|
|||
|
|
|||
|
$('#example34').multiselect();
|
|||
|
|
|||
|
$('#example34-select').on('click', function() {
|
|||
|
$('#example34').multiselect('select', 'cheese');
|
|||
|
$('#example34').multiselect('select', 'tomatoes');
|
|||
|
});
|
|||
|
|
|||
|
$('#example34-deselect').on('click', function() {
|
|||
|
$('#example34').multiselect('deselect', 'cheese');
|
|||
|
$('#example34').multiselect('deselect', 'tomatoes');
|
|||
|
});
|
|||
|
|
|||
|
$('#example34-values').on('click', function() {
|
|||
|
$('#example34-text').text('Selected: ' + $('#example34').val()).addClass('alert alert-info');
|
|||
|
});
|
|||
|
|
|||
|
$('#example37').multiselect({
|
|||
|
onChange: function(option, checked) {
|
|||
|
// Get selected options.
|
|||
|
var selectedOptions = $('#example37 option:selected');
|
|||
|
|
|||
|
if (selectedOptions.length >= 4) {
|
|||
|
// Disable all other checkboxes.
|
|||
|
var nonSelectedOptions = $('#example37 option').filter(function() {
|
|||
|
return !$(this).is(':selected');
|
|||
|
});
|
|||
|
|
|||
|
var dropdown = $('#example37').siblings('.multiselect-container');
|
|||
|
nonSelectedOptions.each(function() {
|
|||
|
var input = $('input[value="' + $(this).val() + '"]');
|
|||
|
input.prop('disabled', true);
|
|||
|
input.parent('li').addClass('disabled');
|
|||
|
});
|
|||
|
}
|
|||
|
else {
|
|||
|
// Enable all checkboxes.
|
|||
|
var dropdown = $('#example37').siblings('.multiselect-container');
|
|||
|
$('#example37 option').each(function() {
|
|||
|
var input = $('input[value="' + $(this).val() + '"]');
|
|||
|
input.prop('disabled', false);
|
|||
|
input.parent('li').addClass('disabled');
|
|||
|
});
|
|||
|
}
|
|||
|
}
|
|||
|
});
|
|||
|
|
|||
|
var orderCount = 0;
|
|||
|
$('#example38').multiselect({
|
|||
|
buttonText: function(options) {
|
|||
|
if (options.length == 0) {
|
|||
|
return 'None selected <b class="caret"></b>';
|
|||
|
}
|
|||
|
else if (options.length > 3) {
|
|||
|
return options.length + ' selected <b class="caret"></b>';
|
|||
|
}
|
|||
|
else {
|
|||
|
var selected = [];
|
|||
|
options.each(function() {
|
|||
|
selected.push([$(this).text(), $(this).data('order')]);
|
|||
|
});
|
|||
|
;
|
|||
|
selected.sort(function(a, b) {
|
|||
|
return a[1] - b[1];
|
|||
|
})
|
|||
|
|
|||
|
var text = '';
|
|||
|
for (var i = 0; i < selected.length; i++) {
|
|||
|
text += selected[i][0] + ', ';
|
|||
|
}
|
|||
|
|
|||
|
return text.substr(0, text.length -2) + ' <b class="caret"></b>';
|
|||
|
}
|
|||
|
},
|
|||
|
onChange: function(option, checked) {
|
|||
|
if (checked) {
|
|||
|
orderCount++;
|
|||
|
$(option).data('order', orderCount);
|
|||
|
}
|
|||
|
else {
|
|||
|
$(option).data('order', '');
|
|||
|
}
|
|||
|
}
|
|||
|
});
|
|||
|
|
|||
|
$('#example38-order').on('click', function() {
|
|||
|
var selected = [];
|
|||
|
$('#example38 option:selected').each(function() {
|
|||
|
selected.push([$(this).val(), $(this).data('order')]);
|
|||
|
});
|
|||
|
|
|||
|
selected.sort(function(a, b) {
|
|||
|
return a[1] - b[1];
|
|||
|
});
|
|||
|
|
|||
|
var text = '';
|
|||
|
for (var i = 0; i < selected.length; i++) {
|
|||
|
text += selected[i][0] + ', ';
|
|||
|
}
|
|||
|
text = text.substring(0, text.length - 2);
|
|||
|
|
|||
|
alert(text);
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
<table class="table table-striped">
|
|||
|
<tbody>
|
|||
|
<tr>
|
|||
|
<td style="width:400px">
|
|||
|
<p>
|
|||
|
Use "Select" and "Deselect" to select or deselectcheese and tomatoes. Use "Values" to display the currently selected elements by using <code>$('.multiselect').val()</code>.
|
|||
|
</p>
|
|||
|
<div class="btn-group">
|
|||
|
<select id="example34" 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>
|
|||
|
<button id="example34-select" class="btn btn-primary">Select</button>
|
|||
|
<button id="example34-deselect" class="btn btn-primary">Deselect</button>
|
|||
|
<button id="example34-values" class="btn btn-primary">Values</button>
|
|||
|
</div>
|
|||
|
<div id="example34-text" style="margin-top:6px;"></div>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<pre class="prettyprint linenums">
|
|||
|
<script type="text/javascript">
|
|||
|
$('#example34').multiselect();
|
|||
|
|
|||
|
$('#example34-select').on('click', function() {
|
|||
|
$('#example34').multiselect('select', 'cheese');
|
|||
|
$('#example34').multiselect('select', 'tomatoes');
|
|||
|
});
|
|||
|
|
|||
|
$('#example34-deselect').on('click', function() {
|
|||
|
$('#example34').multiselect('deselect', 'cheese');
|
|||
|
$('#example34').multiselect('deselect', 'tomatoes');
|
|||
|
});
|
|||
|
|
|||
|
$('#example34-values').on('click', function() {
|
|||
|
$('#example34-text').text('Selected: ' + $('#example34').val()).addClass('alert alert-info');
|
|||
|
});
|
|||
|
</script>
|
|||
|
</pre>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<p>
|
|||
|
Use the button to toggle the selection.
|
|||
|
</p>
|
|||
|
<div class="btn-group">
|
|||
|
<select id="example21" 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>
|
|||
|
<button id="example21-toggle" class="btn btn-primary">Select All</button>
|
|||
|
</div>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<pre class="prettyprint linenums">
|
|||
|
<script type="text/javascript">
|
|||
|
/**
|
|||
|
* Gets whether all the options are selected
|
|||
|
* @param {jQuery} $el
|
|||
|
* @returns {bool}
|
|||
|
*/
|
|||
|
function multiselect_selected($el) {
|
|||
|
var ret = true;
|
|||
|
$('option', $el).each(function(element) {
|
|||
|
if (!!!$(this).prop('selected')) {
|
|||
|
ret = false;
|
|||
|
}
|
|||
|
});
|
|||
|
return ret;
|
|||
|
}
|
|||
|
|
|||
|
/**
|
|||
|
* Selects all the options
|
|||
|
* @param {jQuery} $el
|
|||
|
* @returns {undefined}
|
|||
|
*/
|
|||
|
function multiselect_selectAll($el) {
|
|||
|
$('option', $el).each(function(element) {
|
|||
|
$el.multiselect('select', $(this).val());
|
|||
|
});
|
|||
|
}
|
|||
|
/**
|
|||
|
* Deselects all the options
|
|||
|
* @param {jQuery} $el
|
|||
|
* @returns {undefined}
|
|||
|
*/
|
|||
|
function multiselect_deselectAll($el) {
|
|||
|
$('option', $el).each(function(element) {
|
|||
|
$el.multiselect('deselect', $(this).val());
|
|||
|
});
|
|||
|
}
|
|||
|
|
|||
|
/**
|
|||
|
* Clears all the selected options
|
|||
|
* @param {jQuery} $el
|
|||
|
* @returns {undefined}
|
|||
|
*/
|
|||
|
function multiselect_toggle($el, $btn) {
|
|||
|
if (multiselect_selected($el)) {
|
|||
|
multiselect_deselectAll($el);
|
|||
|
$btn.text("Select All");
|
|||
|
}
|
|||
|
else {
|
|||
|
multiselect_selectAll($el);
|
|||
|
$btn.text("Deselect All");
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
$(document).ready(function() {
|
|||
|
$('#example21').multiselect();
|
|||
|
$("#example21-toggle").click(function(e) {
|
|||
|
e.preventDefault();
|
|||
|
multiselect_toggle($("#example21"), $(this));
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
</pre>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<p>
|
|||
|
When deselecting an option you will be asked for confirmation.
|
|||
|
</p>
|
|||
|
<select id="example22" 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>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<pre class="prettyprint linenums">
|
|||
|
<script type="text/javascript">
|
|||
|
$(document).ready(function() {
|
|||
|
$('#example22').multiselect({
|
|||
|
buttonClass: 'btn',
|
|||
|
buttonWidth: 'auto',
|
|||
|
buttonText: function(options) {
|
|||
|
if (options.length == 0) {
|
|||
|
return 'None selected <b class="caret"></b>';
|
|||
|
}
|
|||
|
else if (options.length > 6) {
|
|||
|
return options.length + ' selected <b class="caret"></b>';
|
|||
|
}
|
|||
|
else {
|
|||
|
var selected = '';
|
|||
|
options.each(function() {
|
|||
|
selected += $(this).text() + ', ';
|
|||
|
});
|
|||
|
return selected.substr(0, selected.length -2) + ' <b class="caret"></b>';
|
|||
|
}
|
|||
|
},
|
|||
|
onChange: function(element, checked) {
|
|||
|
if(checked == true) {
|
|||
|
// action taken here if true
|
|||
|
}
|
|||
|
else if (checked == false) {
|
|||
|
if (confirm('Do you wish to deselect the element?')) {
|
|||
|
// action taken here
|
|||
|
}
|
|||
|
else {
|
|||
|
$("#example22").multiselect('select', element.val());
|
|||
|
return false;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
</pre>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<p>
|
|||
|
Switching between different configuration sets is possible using a combination of <code>.multiselect('setOptions', options)</code> and <code>.multiselect('rebuild')</code>.
|
|||
|
</p>
|
|||
|
<div class="btn-group">
|
|||
|
<select id="example33" 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>
|
|||
|
<button id="example33-configuration-set" class="btn btn-primary">Configuration Set 2</button>
|
|||
|
</div>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<pre class="linenums prettyprint">
|
|||
|
<script type="text/javascript">
|
|||
|
$(document).ready(function() {
|
|||
|
|
|||
|
var firstConfigurationSet = {
|
|||
|
includeSelectAllOption: false,
|
|||
|
enableFiltering: false
|
|||
|
};
|
|||
|
var secondConfigurationSet = {
|
|||
|
includeSelectAllOption: true,
|
|||
|
enableFiltering: true
|
|||
|
};
|
|||
|
|
|||
|
var set = 1;
|
|||
|
$('#example33').multiselect(firstConfigurationSet);
|
|||
|
|
|||
|
function rebuildMultiselect(options) {
|
|||
|
$('#example33').multiselect('setOptions', options);
|
|||
|
$('#example33').multiselect('rebuild');
|
|||
|
}
|
|||
|
|
|||
|
$('#example33-configuration-set').on('click', function(event) {
|
|||
|
switch (set) {
|
|||
|
case 2:
|
|||
|
rebuildMultiselect(firstConfigurationSet);
|
|||
|
|
|||
|
$(this).text('Configuration Set 2');
|
|||
|
set = 1;
|
|||
|
break;
|
|||
|
case 1:
|
|||
|
default:
|
|||
|
rebuildMultiselect(secondConfigurationSet);
|
|||
|
|
|||
|
$(this).text('Configuration Set 1');
|
|||
|
set = 2;
|
|||
|
break;
|
|||
|
}
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
</pre>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<p>
|
|||
|
Limit the number of selected options using the <code>onChange</code> option. The user may only select a maximum of 4 options. Then all other options are disabled.
|
|||
|
</p>
|
|||
|
<div class="btn-group">
|
|||
|
<select id="example37" 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>
|
|||
|
</div>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<pre class="linenums prettyprint">
|
|||
|
<script type="text/javascript">
|
|||
|
$(document).ready(function() {
|
|||
|
$('#example37').multiselect({
|
|||
|
onChange: function(option, checked) {
|
|||
|
// Get selected options.
|
|||
|
var selectedOptions = $('#example37 option:selected');
|
|||
|
|
|||
|
if (selectedOptions.length >= 4) {
|
|||
|
// Disable all other checkboxes.
|
|||
|
var nonSelectedOptions = $('#example37 option').filter(function() {
|
|||
|
return !$(this).is(':selected');
|
|||
|
});
|
|||
|
|
|||
|
var dropdown = $('#example37').siblings('.multiselect-container');
|
|||
|
nonSelectedOptions.each(function() {
|
|||
|
var input = $('input[value="' + $(this).val() + '"]');
|
|||
|
input.prop('disabled', true);
|
|||
|
input.parent('li').addClass('disabled');
|
|||
|
});
|
|||
|
}
|
|||
|
else {
|
|||
|
// Enable all checkboxes.
|
|||
|
var dropdown = $('#example37').siblings('.multiselect-container');
|
|||
|
$('#example37 option').each(function() {
|
|||
|
var input = $('input[value="' + $(this).val() + '"]');
|
|||
|
input.prop('disabled', false);
|
|||
|
input.parent('li').addClass('disabled');
|
|||
|
});
|
|||
|
}
|
|||
|
}
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
</pre>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr>
|
|||
|
<td>
|
|||
|
<p>
|
|||
|
Record the order the options are selected. When selecting an item an ordering number will be incremented and saved within the option
|
|||
|
</p>
|
|||
|
<div class="btn-group">
|
|||
|
<select id="example38" 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>
|
|||
|
<button id="example38-order" class="btn btn-primary">Order</button>
|
|||
|
</div>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<pre class="linenums prettyprint">
|
|||
|
<script type="text/javascript">
|
|||
|
$(document).ready(function() {
|
|||
|
var orderCount = 0;
|
|||
|
$('#example38').multiselect({
|
|||
|
buttonText: function(options) {
|
|||
|
if (options.length == 0) {
|
|||
|
return 'None selected <b class="caret"></b>';
|
|||
|
}
|
|||
|
else if (options.length > 3) {
|
|||
|
return options.length + ' selected <b class="caret"></b>';
|
|||
|
}
|
|||
|
else {
|
|||
|
var selected = [];
|
|||
|
options.each(function() {
|
|||
|
selected.push([$(this).text(), $(this).data('order')]);
|
|||
|
});
|
|||
|
|
|||
|
selected.sort(function(a, b) {
|
|||
|
return a[1] - b[1];
|
|||
|
})
|
|||
|
|
|||
|
var text = '';
|
|||
|
for (var i = 0; i < selected.length; i++) {
|
|||
|
text += selected[i][0] + ', ';
|
|||
|
}
|
|||
|
|
|||
|
return text.substr(0, text.length -2) + ' <b class="caret"></b>';
|
|||
|
}
|
|||
|
},
|
|||
|
onChange: function(option, checked) {
|
|||
|
if (checked) {
|
|||
|
orderCount++;
|
|||
|
$(option).data('order', orderCount);
|
|||
|
}
|
|||
|
else {
|
|||
|
$(option).data('order', '');
|
|||
|
}
|
|||
|
}
|
|||
|
});
|
|||
|
|
|||
|
$('#example38-order').on('click', function() {
|
|||
|
var selected = [];
|
|||
|
$('#example38 option:selected').each(function() {
|
|||
|
selected.push([$(this).val(), $(this).data('order')]);
|
|||
|
});
|
|||
|
|
|||
|
selected.sort(function(a, b) {
|
|||
|
return a[1] - b[1];
|
|||
|
});
|
|||
|
|
|||
|
var text = '';
|
|||
|
for (var i = 0; i < selected.length; i++) {
|
|||
|
text += selected[i][0] + ', ';
|
|||
|
}
|
|||
|
text = text.substring(0, text.length - 2);
|
|||
|
|
|||
|
alert(text);
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
</pre>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
</tbody>
|
|||
|
</table>
|
|||
|
|
|||
|
<div class="page-header">
|
|||
|
<h1><a id="additional-styling"></a>Additional Styling</h1>
|
|||
|
</div>
|
|||
|
<p>For additionaly styling of the multiselect button the CSS class <code>multiselect</code> can be used.</p>
|
|||
|
<style media="screen" type="text/css">
|
|||
|
.add-styling-1 .multiselect {
|
|||
|
width: 500px;
|
|||
|
text-align: left;
|
|||
|
}
|
|||
|
.add-styling-1 .multiselect b.caret {
|
|||
|
position: absolute;
|
|||
|
top: 14px;
|
|||
|
right: 8px;
|
|||
|
}
|
|||
|
.add-styling-1 .multiselect-group {
|
|||
|
font-weight: bold;
|
|||
|
text-decoration: underline;
|
|||
|
}
|
|||
|
.add-styling-2 .multiselect-all {
|
|||
|
font-weight: bold;
|
|||
|
}
|
|||
|
.add-styling-2 .multiselect-search {
|
|||
|
color: red;
|
|||
|
}
|
|||
|
</style>
|
|||
|
<script type="text/javascript">
|
|||
|
$(document).ready(function() {
|
|||
|
$('#example15').multiselect({
|
|||
|
buttonWidth: '400px'
|
|||
|
});
|
|||
|
|
|||
|
for (var i = 1; i <= 100; i++) {
|
|||
|
$('#example29').append('<option value="' + i + '">' + i + '</option>');
|
|||
|
}
|
|||
|
|
|||
|
$('#example29').multiselect({
|
|||
|
includeSelectAllOption: true,
|
|||
|
enableFiltering: true,
|
|||
|
maxHeight: 150
|
|||
|
});
|
|||
|
});
|
|||
|
</script>
|
|||
|
<div class="add-styling">
|
|||
|
<table class="table table-striped">
|
|||
|
<tr class="add-styling-1">
|
|||
|
<td>
|
|||
|
<p>
|
|||
|
Text alignment combined with fixed width and bold, underlined text for option group headers.
|
|||
|
</p>
|
|||
|
<select id="example15" multiple="multiple">
|
|||
|
<optgroup label="Mathematics">
|
|||
|
<option value="analysis">Analysis</option>
|
|||
|
<option value="algebra">Linear Algebra</option>
|
|||
|
<option value="discrete">Discrete Mathematics</option>
|
|||
|
<option value="numerical">Numerical Analysis</option>
|
|||
|
<option value="probability">Probability Theory</option>
|
|||
|
</optgroup>
|
|||
|
<optgroup label="Computer Science">
|
|||
|
<option value="programming">Introduction to Programming</option>
|
|||
|
<option value="automata">Automata Theory</option>
|
|||
|
<option value="complexity">Complexity Theory</option>
|
|||
|
<option value="software">Software Engineering</option>
|
|||
|
</optgroup>
|
|||
|
</select>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<pre class="prettyprint linenums">
|
|||
|
.multiselect {
|
|||
|
text-align: left;
|
|||
|
}
|
|||
|
.multiselect b.caret {
|
|||
|
position: absolute;
|
|||
|
top: 14px;
|
|||
|
right: 8px;
|
|||
|
}
|
|||
|
.multiselect-group {
|
|||
|
font-weight: bold;
|
|||
|
text-decoration: underline;
|
|||
|
}
|
|||
|
</pre>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
<tr class="add-styling-2">
|
|||
|
<td>
|
|||
|
<p>
|
|||
|
Access the select all option by using the <code>.multiselect-all</code> class. The filter search field can be manipulated by using <code>.multiselect-search</code>;
|
|||
|
</p>
|
|||
|
<select id="example29" multiple="multiple">
|
|||
|
|
|||
|
</select>
|
|||
|
</td>
|
|||
|
<td>
|
|||
|
<pre class="prettyprint linenums">
|
|||
|
.multiselect-all label {
|
|||
|
font-weight: bold;
|
|||
|
}
|
|||
|
.multiselect-search {
|
|||
|
color: red;
|
|||
|
}
|
|||
|
</pre>
|
|||
|
</td>
|
|||
|
</tr>
|
|||
|
</table>
|
|||
|
</div>
|
|||
|
</div>
|
|||
|
<div class="container">
|
|||
|
<hr>
|
|||
|
<p>
|
|||
|
© 2012, 2013
|
|||
|
<a href="http://davidstutz.de">David Stutz</a> - dual licensed: <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache License v2.0</a>, <a href="http://opensource.org/licenses/BSD-3-Clause">BSD 3-Clause License</a>
|
|||
|
</p>
|
|||
|
</div>
|
|||
|
</body>
|
|||
|
</html>
|