Set focus on Extjs textfield

后端 未结 11 1765
星月不相逢
星月不相逢 2020-12-31 02:02

Currently I got problem with setting focus on extjs textfield. When form show, I want to set focus to First name text box and I try to use build in function focus() but stil

11条回答
  •  [愿得一人]
    2020-12-31 02:22

    why not just add defaultFocus : '#first_name' instead of adding to much lines of code?

    OR, after this.callParent(arguments); add this line Ext.getCmp('comp_id').focus('', 10);

提交回复
热议问题