FF15 compatible GWT addon is in trunk http://code.google.com/p/google-web-toolkit/source/browse/trunk/plugins/xpcom/prebuilt/gwt-dev-plugin.xpi?spec=svn11253&r=11253
--
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.
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();
}
}
});