I had determined that the cause of this issue is related to javascript in /opt/rt4/local/html/Elements/EditCustomFieldAutocomplete. There is an additional comma at the end of jQuery.autocomplete call and the browser is expecting another parameter. You could remove the comma but I opted to add a minLength: 1 value to make the autocomplete values pop up faster. (Default is 3 I believe)<br>
<br><br><input type="text" id="<% $name %>-Value" name="<% $name %>-Value" class="CF-<%$CustomField->id%>-Edit" value="<% $Default || '' %>"/><br>
<script type="text/javascript"><br>var id = '<% $name . '-Value' %>';<br>id = id.replace(/:/g,'\\:');<br>jQuery('#' + id).autocomplete( { source: "<%RT->Config->Get('WebPath')%>/Helpers/Autocomplete/CustomFieldValues?<% $name . '-Value' %>", minLength: 1<br>
}<br>);<br><br><br><br><br><div class="gmail_quote">On Wed, Dec 7, 2011 at 2:57 PM, Jim Lesinski <span dir="ltr"><<a href="mailto:jim.lesinski@gmail.com">jim.lesinski@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
I noticed that a Single Value Automplete custom field does not seem to work in RT 4.0.4 with Internet Explorer 8 and 9. In fact nothing comes up. Multivalues works as expected and other browsers work with autocomplete.<div>

<br></div><div>Does any one else have this issue and possibly a work around. </div>
</blockquote></div><br>