We are seeing unexpected results for the method KeyUpEvent.getKeyName().
For instance, with below code:
TextItem txt = new TextItem();
txt.addKeyUpHandler(new KeyUpHandler() {
public void onKeyUp(final KeyUpEvent event) {
String keyName = event.getKeyName();
log("KeyUpEvent.keyName()=" + keyName);
}
});
This works well for normal characters, enter, delete etc.
But since Firefox15, when pressing ù on azerty, this returns "Alt"
Also, when pressing µ, this returns "$i9"
Pressing ^ returns "Shift"
Pressing $ gives "Alt"
The list goes on, with ) and - returning null
< returning ,
We have found though that only since Firefox 15 the ù returns Alt, which is the most pressing problem for us.
Can this be looking into please?
(SNAPSHOT_v8.3d_2012-10-11/Pro Deployment (built 2012-10-11)
For instance, with below code:
TextItem txt = new TextItem();
txt.addKeyUpHandler(new KeyUpHandler() {
public void onKeyUp(final KeyUpEvent event) {
String keyName = event.getKeyName();
log("KeyUpEvent.keyName()=" + keyName);
}
});
This works well for normal characters, enter, delete etc.
But since Firefox15, when pressing ù on azerty, this returns "Alt"
Also, when pressing µ, this returns "$i9"
Pressing ^ returns "Shift"
Pressing $ gives "Alt"
The list goes on, with ) and - returning null
< returning ,
We have found though that only since Firefox 15 the ù returns Alt, which is the most pressing problem for us.
Can this be looking into please?
(SNAPSHOT_v8.3d_2012-10-11/Pro Deployment (built 2012-10-11)
Comment