
Security News
Django Joins curl in Pushing Back on AI Slop Security Reports
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
tree-multiselect
Advanced tools
This plugin allows you to add a sweet treeview frontend to a select
element.
The underlying select
element can be used as it was before.
My website has a simple demo running.
Make sure your select
has the multiple
attribute set. Also, make sure you've got <meta charset="UTF-8">
or some of the symbols may look strange.
Option Attribute name | Description |
---|---|
selected | Have the option pre-selected. This is actually part of the HTML spec. For specified ordering of these, use data-index |
readonly | User cannot modify the value of the option. Option can be selected (ex. <option selected readonly ... ) |
data-section | The section the option will be in; can be nested |
data-description | A description of the attribute; will be shown on the multiselect |
data-index | For pre-selected options, display options in this order, lowest index first. Repeated items with the same index will be shown before items with a higher index. Otherwise items will be displayed in the order of the original select |
All of the above are optional.
Your data-section
can have multiple section names, separated by the sectionDelimiter
option.
Ex. data-section="top/middle/inner"
will show up as
top
middle
inner
$("select").treeMultiselect();
And now with some params.
$("select").treeMultiselect({searchable: true});
function treeOnChange(allSelectedItems, addedItems, removedItems) {
console.log("something changed!");
}
$("select").treeMultiselect({
allowBatchSelection: false,
onChange: treeOnChange,
startCollapsed: true
});
The function returns returns an array of objects, each of which contains two functions, remove
and reload
. remove
removes the tree, and reload
reinitializes the tree from its select
element. User-changed options will be lost!
var trees = $("select").treeMultiselect();
var firstTree = trees[0];
// remove the tree
firstTree.remove();
// or, change the select element with new options, then...
firstTree.reload();
Name | Default | Description |
---|---|---|
allowBatchSelection | true | Sections have checkboxes which when checked, check everything within them |
collapsible | true | Adds collapsibility to sections |
enableSelectAll | false | Enables selection of all or no options |
selectAllText | Select All | Only used if enableSelectAll is active |
unselectAllText | Unselect All | Only used if enableSelectAll is active |
freeze | false | Disables selection/deselection of options; aka display-only |
hideSidePanel | false | Hide the right panel showing all the selected items |
onChange | null | Callback for when select is changed. Called with (allSelectedItems, addedItems, removedItems), each of which is an array of objects with the properties text , value , initialIndex , and section |
onlyBatchSelection | false | Only sections can be checked, not individual items |
sortable | false | Selected options can be sorted by dragging (requires jQuery UI) |
searchable | false | Allows searching of options |
searchParams | ['value', 'text', 'description', 'section'] | Set items to be searched. Array must contain 'value' , 'text' , or 'description' , and/or 'section' |
sectionDelimiter | / | Separator between sections in the select option data-section attribute |
showSectionOnSelected | true | Show section name on the selected items |
startCollapsed | false | Activated only if collapsible is true; sections are collapsed initially |
Load jquery.tree-multiselect.min.js
on to your web page. The css file is optional (but recommended).
You can also use bower - bower install tree-multiselect
Help! The first element is selected when I create the tree. How do I make the first element not selected?
You didn't set the multiple
attribute on your select
. This is a property of single-option select nodes - the first option is selected.
MIT licensed.
FAQs
jQuery multiple select with nested options
The npm package tree-multiselect receives a total of 485 weekly downloads. As such, tree-multiselect popularity was classified as not popular.
We found that tree-multiselect demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.