在extjs中按名称获取组件

时间:2013-02-06 06:37:34

标签: extjs

我在名为date extjs 商店中有组件

如何检索 ExtJS

2 个答案:

答案 0 :(得分:18)

试试这个:

var dateObj = Ext.ComponentQuery.query('[name=date]');

答案 1 :(得分:16)

name属性通常由字段使用,并且有更好的方法可以将其作为ComponentQuery获取。因此,如果这是关于字段的,我强烈建议您使用findField()  而不是ComponentQuery。您可以像

一样使用它
formInstance.getForm().findField('NameOrId');