Документы TextBox.selectAll()
говорят:
This will only work when the widget is attached to the document and not hidden.
Скорее всего, ваш TextBox
еще не подключен к DOM, когда вы звоните .selectAll()
.
Попробуйте использовать Scheduler
:
final TextArea myText = new TextArea();
myText.setCharacterWidth(50);
myText.setVisibleLines(20);
myText.setText("Just try something");
RootPanel.get("textContainer").add(myText);
Scheduler.get().scheduleDeferred(new Scheduler.ScheduledCommand() {
@Override
public void execute() {
// your commands here
myText.setVisible(true);
myText.setFocus(true);
myText.selectAll();
}
});