DrupalDork.com was shut down on September 18, 2013. This is just a snapshot of the site as it appeared then.

Add new comment

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');
};

/**