I ran into this exact issue a few months ago. I wrote a small custom patch (but can not remember if I submitted it to the core issue queue) to get the job done.
--- a/misc/autocomplete.js
+++ b/misc/autocomplete.js
@@ -112,6 +112,7 @@ Drupal.jsAC.prototype.onkeyup = function (input, e) {
*/
Drupal.jsAC.prototype.select = function (node) {
this.input.value = $(node).data('autocompleteValue');
+ $(this.input).trigger('change');
};
I ran into this exact issue a
I ran into this exact issue a few months ago. I wrote a small custom patch (but can not remember if I submitted it to the core issue queue) to get the job done.
--- a/misc/autocomplete.js
+++ b/misc/autocomplete.js
@@ -112,6 +112,7 @@ Drupal.jsAC.prototype.onkeyup = function (input, e) {
*/
Drupal.jsAC.prototype.select = function (node) {
this.input.value = $(node).data('autocompleteValue');
+ $(this.input).trigger('change');
};
/**