Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在视图中有一个选择字段,当我导航到该视图时,我希望在移动到该视图时自动打开键盘。我正在尝试调用焦点方法,但它不起作用,
任何人都可以帮助我。
您必须在初始化文本字段后立即将焦点放在文本字段上,如下所示,
listeners: { initialize: function(view, eOpts) { Ext.getCmp('_phoneNumberId').focus(); } }