You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
a nice option would be to let the filter search in the option text and the option value field
my quick fix is to add to handleFilterKeyup if ( li.innerHTML.substring(0, self.filter.value.length).toLowerCase() == self.filter.value.toLowerCase() || li.getAttribute('data-value').substring(0, self.filter.value.length).toLowerCase() == self.filter.value.toLowerCase()) {
The text was updated successfully, but these errors were encountered:
a nice option would be to let the filter search in the option text and the option value field
my quick fix is to add to handleFilterKeyup
if ( li.innerHTML.substring(0, self.filter.value.length).toLowerCase() == self.filter.value.toLowerCase() || li.getAttribute('data-value').substring(0, self.filter.value.length).toLowerCase() == self.filter.value.toLowerCase()) {
The text was updated successfully, but these errors were encountered: