Does the KeyPressHandler work for you in FF 15?  I'm using OSX Snow
Leopard, but does it work for you anyway?
https://developers.google.com/web-toolkit/tools/gwtdesigner/tutorials/stockwatcher#event_handlers

newSymbolTextBox.addKeyPressHandler(new KeyPressHandler() {
        public void onKeyPress(KeyPressEvent event) {
                if (event.getCharCode() == KeyCodes.KEY_ENTER){
                        addStock();
                }
        }
});

Also noticed that the text box does not have focus, yet:
newSymbolTextBox.setFocus(true);

On Fri, Aug 31, 2012 at 7:56 PM, Juan Pablo Gardella
<[email protected]> wrote:
> Thanks Brian!!
>
>
> 2012/8/31 Brian Slesinsky <[email protected]>
>>
>> The missing plugin page is updated now.
>>
>> http://gwt.google.com/missing-plugin/MissingPlugin.html
>>
>>
>> On Friday, August 31, 2012 10:18:48 AM UTC-7, Brian Slesinsky wrote:
>>>
>>> This is live at:
>>> https://dl-ssl.google.com/gwt/plugins/firefox/gwt-dev-plugin.xpi
>>>
>>> I still need to update the missing plugin page.
>>>
>>> On Thursday, August 30, 2012 5:20:37 PM UTC-7, Brian Slesinsky wrote:
>>>>
>>>> Thanks everyone. Our release process is surprisingly cumbersome, but it
>>>> should be up soon.
>>>>
>>>> - Brian
>>>>
>> --
>> You received this message because you are subscribed to the Google Groups
>> "Google Web Toolkit" group.
>> To view this discussion on the web visit
>> https://groups.google.com/d/msg/google-web-toolkit/-/5ySdoW3bhXYJ.
>>
>> To post to this group, send email to [email protected].
>> To unsubscribe from this group, send email to
>> [email protected].
>> For more options, visit this group at
>> http://groups.google.com/group/google-web-toolkit?hl=en.
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Google Web Toolkit" group.
> To post to this group, send email to [email protected].
> To unsubscribe from this group, send email to
> [email protected].
> For more options, visit this group at
> http://groups.google.com/group/google-web-toolkit?hl=en.

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

Reply via email to