3
私のGWTページにはTextAreaがあり、このページがロードされたときにフォーカスを持ち、すべてのテキストを選択したいと考えています。私は以下のコードを試してみるが、全く動作しない。手伝って頂けますか?おかげGWT TextAreaでselectAll()を使用
final TextArea myText = new TextArea();
myText.setCharacterWidth(50);
myText.setVisibleLines(20);
myText.setText("Just try something");
RootPanel.get("textContainer").add(myText);
myText.setVisible(true);
myText.setFocus(true);
myText.selectAll();
!それは動作します、ありがとう! – Arturo