Index: branches/RC/core/admin_templates/js/ajax_dropdown.js =================================================================== diff -u -r9299 -r9321 --- branches/RC/core/admin_templates/js/ajax_dropdown.js (.../ajax_dropdown.js) (revision 9299) +++ branches/RC/core/admin_templates/js/ajax_dropdown.js (.../ajax_dropdown.js) (revision 9321) @@ -214,7 +214,7 @@ AJAXDropDown.prototype.ClickItem = function(item) { - this.Input.value = item.innerHTML; + this.Input.value = this.GetValueCallback(item); this.CloseBox(); } @@ -265,7 +265,10 @@ item.className = 'suggest-item-over'; this.SelectedItem = item; item.scrollIntoView(false); - if (setvalue) this.Input.value = this.GetValueCallback(item); + + if (setvalue) { + this.Input.value = this.GetValueCallback(item); + } } AJAXDropDown.prototype.GetValue = function(item)