我在 Extjs 中选择一个表单,如下所示:
var form = Ext.getCmp(mainTabsId).getActiveTab().down().getForm("add-form");
//I am getting here the correct id.
console.log(form.id);
但是当我试图在里面找到一个这样的字段时,我收到以下错误:
form.findField("Address").getValue();
Uncaught TypeError: Object [object Object] has no method 'findField'