Using modules that add the attribute "disabled=disabled" at Text-input the Arrow-button should be disabled too. Instead of this, it pop-ups the List and when you select an item from list Text-input is being updated.
So... editing the autocomplete_deluxe.js
I replaced
parent.mousedown(function() {
if (parent.hasClass('autocomplete-deluxe-single-open')) {
jqObject.autocomplete('close');
} else {
jqObject.autocomplete('search', '');
}
});
With
parent.mousedown(function() {
if (parent.hasClass('autocomplete-deluxe-single-open')) {
jqObject.autocomplete('close');
} else if (parent.children('input.autocomplete-deluxe-form').attr('disabled') == false) {
jqObject.autocomplete('search', '');
}
});
Closed: outdated
2.0
Single values
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.