0

给定这样的组件:

{xtype: 'textfield', name: 'title', fieldLabel: 'Title', autoFocus: true}

是否可以查询任意容器(例如窗口)中具有autoFocus调用方法的属性的所有项目.focus(...)

试过...

'[autoFocus]'

'*[autoFocus]'

'*[autoFocus=true]'

...与component.downExt.ComponentQuery.query(和其他人),但没有运气。

4

1 回答 1

3

Ext.ComponentQuery.query('textfield[autoFocus]')应该可以工作,只要文本字段被实例化。

于 2014-06-02T21:48:08.387 回答