In GWT + UiBinder, you can catch clicks as follows:
@UiHandler("cancelButton")
void onCancelButtonClicked(ClickEvent e) {
}
Is there an equivalent to keystroke? For example, if the user presses the ESC key, we cancel the action.
Thank you very much.
source
share