我的输入文本框有这个类:
class InputTextBox extends FlowPanel {
public InputTextBox(String labelText) {
super();
Label label = new Label(labelText);
TextBox input = new TextBox();
this.add(label);
this.add(input);
this.addStyleName("myBox");
}
}
如何在该文本框中设置焦点,以便在调用 onmoduleload 时光标出现在文本框中?添加成员函数似乎会引发许多错误。
public void setFocus(boolean b) {
this.setFocus(b);
}