I can't find function keys (F1 - F12) in KeyCodes.*
Instead of:
NativePreviewHandler handler = new NativePreviewHandler() {
@Override
public void onPreviewNativeEvent(NativePreviewEvent
event) {
if (event.getTypeInt() == Event.KEY_DOWN) {
}
}
};
Event.addNativePreviewHandler(handler);
I would like to say:
if (event.getTypeInt() == Event.F12) {
}
Am I missing something obvious, or is this not possible ?
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---