Is it possible that pressing "x" button on Select2 dropdown with allowClear
enabled set default (predefined) value?
Select2 clear 'x' button to set default value?
3.9k Views Asked by Yuray At
3
There are 3 best solutions below
0

Select2 allows you to associate the placeholder with an id other than a blank string.
$("select").select2({
placeholder: {
id: "the_predefined_value",
text: "The placeholder text"
}
});
So when you click on the "x", it will set the value to the_predefined_value
and display the placeholder text. You are going to need an <option>
with a value
of the_predefined_value
in order for this to work.
Use the onchange event. Check if the value is empty and set the value to whatever predefined is.