SuperImmediateTextField --> KeyDown Event

Hi there,

is there a way in order to get informed if the user pressed the “key down” key.

I know that i will be informed, but how can i know which key exactly was pressed?

Regards
Uwe

// ESC:
filterField.addShortcutListener(new ShortcutListener(“”, ShortcutAction.KeyCode.ESCAPE, new int {}) {
@Override
public void handleAction(Object sender, Object target) {
// do something
}
});