Zarówno skrót ENTER, jak i TextArea w 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

Gorąco, aby skrót działał tylko w polu tekstowym?

questionAnswers(2)

yourAnswerToTheQuestion