Can anyone tell me how to get the KeyLocation of a key event?
There is a class JSKeyboardEvent that has this getter.
OK: Fond out myself.
If you create a JSNI method you have access to the native browser event.
public static native int getKeyLocation(NativeEvent evt)
/*-{
return evt.location | 0;
}-*/;