在 GWT TextArea 中使用 selectAll()
我的 GWT 页面有一个 TextArea,我希望它具有焦点并在加载此页面时选择所有文本。我尝试下面的代码,但它根本不起作用。你能帮助我吗?谢谢
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();
My GWT page has a TextArea and I would like it to have the focus and to have all the text selected just when this page is loaded. I try the code below but it does not work at all. Can you help me? Thanks
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();
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
TextBox.selectAll()
的文档说:当您调用
.selectAll()
时,很可能您的TextBox
尚未附加到 DOM。尝试使用
调度程序
:The docs of
TextBox.selectAll()
says:Most probably your
TextBox
is not yet attached to DOM when you call.selectAll()
.Try using
Scheduler
: