Disable "No matches found" text and autocomplete on select2
I think I see what you're getting at... You want to hide the text that says "No matches found" if a user enters a value into that search field that doesn't exist in the list?
You can probably do that in CSS:
.select2-no-results {
display: none !important;
}
Here's an example.
Actually I was using the select2 v4 tags and the code below helped me :
$(document).find(".email_contact_search").select2({
tags: true,
tokenSeparators: [','],
"language":{
"noResults" : function () { return ''; }
}
});
I just made the noResults language string to none :
"language":{
"noResults" : function () { return ''; }
}
Hope it helps someone
For select2 4.0 you can do
.select2-results__message {
display: none !important;
}