select2-multi-checkboxes
select2-multi-checkboxes copied to clipboard
Send options in templateSelection
With the current version it's not possible to retrieve the label. I wanted to present results using a coma separated list.
templateSelection: function (selected) {
return selected.map(function (i, option) {
return option.innerText
}).get().join(', ')
}