not able to set focus on TextBox in a GWT app

后端 未结 4 1190
别跟我提以往
别跟我提以往 2021-02-02 10:53

This should not be causing me so much pain but it is. It is a very weird problem. In a GWT application, I have two .java files, login.java and application.java. In login.java, I

4条回答
  •  时光取名叫无心
    2021-02-02 11:48

    If your Widget extends Composite, you can:

    @Override
    protected void onAttach() {
        super.onAttach();
        textBoxUsername.setFocus(true);
    }
    

提交回复
热议问题