jQuery dropdown checkboxes Plugin by zealzhangz (https://github.com/zealzhangz/jquery-dropdown-checkboxes)
An easy-to-use dropdown checkbox jQuery plugin based on Bootstrap dropdown.You can simply customize the style of the control.This control has two modes "auto" and "button",in "auto" mode every checkboxes' status changed can trigger callback.In another mode "button" callback can be triggered when you click save button,the two models can not coexist.The default mode is "auto" mode.Both modes you can get all checkboxes jQuery object when it was triggered from callback.Please refer to the specific sample.
Install bower
globally
npm install -g bower
Install jquery-dropdown-checkboxes and dependencies
bower install jquery-dropdown-checkboxes --save
Include jquery,bootstrap and jquery-dropdown-checkboxes in your page
<link rel="stylesheet" href="bower_components/bootstrap/dist/css/bootstrap.min.css"/>
<link rel="stylesheet" href="bower_components/jquery-dropdown-checkboxes/dist/jquery.dropdowncheckboxes.min.css"/>
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="bower_components/jquery-dropdown-checkboxes/dist/jquery.dropdowncheckboxes.min.js"></script>
$("#mydropdowncheckbox2").dropdowncheckboxes({
"targetId": "#mydropdowncheckbox2",
"changeCallback": myCallback,
'options': [
{text: 'Apple', name: 'Apple', id: '_myApple', isChecked: 1},
{text: 'Orange',name: 'Orange',id: '_myOrange',isChecked: 0},
{text: 'Banana',name: 'Banana',id: '_myBanana',isChecked: 1}],
"template": '<a data-toggle="dropdown" aria-expanded="true">Fruits<span class="caret"></span></a>'
});
function myCallback(boxes) {
var values = '';
$(boxes).each(function () {
if ($(this).is(":checked")) {
values += $(this).attr("name") + ',';
}
});
$("#checkboxValue").val(values.slice(0, -1));
}
Contains a simple HTML file to demonstrate your plugin.
This is where the generated files are stored once Grunt runs.
List of rules used by JSHint to detect errors and potential problems in JavaScript.
Contains all automated tasks using Grunt.
Specify all dependencies loaded via Node.JS.
Check CONTRIBUTING.md
Check Release list.