Tanto ENTER atajo como TextArea en Vaadin

TextField f = new TextField();
Button b = new Button("Save");
b.setClickShortcut(KeyCode.ENTER); // For quick saving from text field itself

TextArea longText = new TextArea(); // "Enter" is garbled here

¿En caliente para hacer que el acceso directo funcione solo en el campo de texto?

Respuestas a la pregunta(2)

Su respuesta a la pregunta