--
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-we...@googlegroups.com.
To unsubscribe from this group, send email to google-web-tool...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
Yes, I just added:
Window.addWindowClosingHandler(new ClosingHandler() {
@Override
public void onWindowClosing(ClosingEvent event) {
event.setMessage("My program");
}
});
as Ian Bambury advised.
That solves the problem and it seems to be necessary for most of the
GWT applications as it is easy to:
1. press backspace when focus is lost from the input field;
2. press back button on the mouse if you have one.