MultiList allows you to customize a selector with nestable list
npm install multilist-boldest> bower install multiList
$('#asigned_terms3').multiList();
`
* 2) passing a query multiple $('select').MultiMultiList().
`
$('.classAllSelect').multiMultiList();
$('select').multiMultiList();
`Params
MultiList parameters:
* orientation: Vertical or Horizontal
* placeholder: String
* icon: String html
* itemActions: Array Objects{ id, html, action(function)}Vertical lists ordering them selected from the top down. Horizontal shows another type of styles that allow you to sort horizontally.
Example:
`
$('#asigned_terms3').multiList({
orientation: 'horizontal',
placeholder: 'Select options',
itemActions: [
{ 'id': 'edit', 'html': '', 'action': editCollection },
{ 'id': 'show', 'html': '', 'action': showCollection }
],
'icon': ''
});
`
multiMultiList
If you create multiple MultiList with multiMultiList all would have the same options.
Order Result
The result of ordering the selected list is saved in the native switch to the attribute data-orderExample Native Select Result:
`
``