-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can it be made typeahead instead of dropdown? #24
Comments
+1 |
add https://jsfiddle.net/04mar3z9/ - here you can check how it works |
well, using that selection does not work, at least for me :) |
If you place $('.select2-multiple2').select2MultiCheckboxes({
minimumResultsForSearch: 0,
templateSelection: function(selected, total) {
return "Selected " + selected.length + " of " + total;
}
}); |
Similar to the previous select2 multiple, can this multiple checkboxes be made typeahead too?
What I mean is the user types for the value, gets it, checks it, clicks outside, the label shows "1 selected". If instead of clicking outside, he backspaces and types another, gets it, checks it, clicks outside, the label shows "2 selected". Something like this.
So if you refer, https://jsfiddle.net/wasikuss/7ak9skbb/, I guess I am asking if the 2nd and 3rd select box functionalities can be combined?
The text was updated successfully, but these errors were encountered: