On 08/23/2011 12:42 PM, Roustalski wrote:
> Has anyone else noticed that text boxes do not show the focus ring
> when the element has focus, and that a KeyPressEvent looking for the
> charCode KeyCodes.KEY_ENTER doesn't actually work?

Take a look at the onBrowserEvent in
com.google.gwt.cell.client.EditTextCell.class

I see:
boolean enterPressed = "keyup".equals(type)
          && keyCode == KeyCodes.KEY_ENTER;

and the edit mode of EditTextCell works for me. So, maybe rewrite the
logic you're using. This code seems to have survived the transition to FF6.

> Why would upgrading Firefox break this functionality?
> 
> My app works on all other browsers and platforms, but upgrading FF to
> version 6 breaks things? I don't understand.
> 

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to