I'm Using Select2 (v3.5.2) and trying to allow the user to select one or more values from a multiple dropdown.
Imagine this simple pseudo html markup:
<select class='select2' multiple>
<option value="A">A</option>
<option value="B">B</option>
<option value="C">C</option>
</select>
And jQuery:
$(document).ready(function() {
$('.select2').select2();
});
The default functionality allows selecting the options (A,B,C) only once, in my scenario I need the user to be able to select same option more than once so that the following can be possible:
A,A,A,B,C
A,B,B,B,C,C
A,A,A,B,B,C,C,C
etc...
From my search on it, it doesn't seem to be supported on version 3.5.2 but some posts mention it is supported on version 4.0.x.
However, I could not find any documentation on it for v4 and would really rather not to upgrade to 4 yet anyway.
Does anyone know how to make it work with version 3 (or 4)?