What's the URL of the page containing the problem?
/r/#/
What steps will reproduce the problem?
1. Enter a reviewer in the people field
2. Hit enter to save the field
What is the expected output? What do you see instead?
Expect the field to be saved, so I can go on editing other fields.
Instead, there are two issues:
1. If the name was only partially completed, Firefox will finish it, but on
IE it gets submitted as-is (and the server strips the invalid name away
silently).
2. The following javascript error occurs:
Line: 84
Error: Can't move focus to the control because it is invisible, not
enabled, or of a type that does not accept the focus.
What operating system are you using? What browser?
Windows XP SP2, Internet Explorer 6.0 SP2
Windows Vista, Internet Explorer 7.0
Please provide any additional information below.
Here's the stack trace of the error:
scripts/yui/autocomplete/autocomplete-min.js:84:293
oTextbox.focus()
scripts/yui/autocomplete/autocomplete-min.js:88:178
this._updateValue(oItem)
scripts/yui/autocomplete/autocomplete-min.js:109:21
oSelf._selectItem(oSelf._oCurItem)
scripts/yui/event/event-min.js:19:34
return fn.call(scope,YAHOO.util.Event.getEvent(e),obj)
I suspect that this is related to issue 351. Hitting enter might be
causing the form to try to publish, which saves the field without
autocompletion and hides the input field. Then the autocomplete code tries
to fill in the value and adjust the focus in the input field.