Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
垂直パネルに多くのボタンがあり、タブキーで各ボタンから移動できますが、キーボードを上、下、右、または左に移動できません。この機能を有効にするコマンドは何ですか?thx
VerticalPanel panel =//; panel.addDomHandler(new KeyUpHandler() { @Override public void onKeyUp(KeyUpEvent event) { switch (event.getNativeKeyCode()) { case KeyCodes.KEY_LEFT: //... case KeyCodes.KEY_RIGHT: } } }, KeyUpEvent.getType());