ExtJs getCmp失败

时间:2011-02-07 19:51:43

标签: javascript extjs

我有这段代码来检查表单是否已经存在。但它给出了一个错误。

onRender : function() {
    var cmp = Ext.getCmp('myForm');
    if (cmp) {
        alert("Component of this type already exist");
        return;
    }

错误来自ExtJs核心。在调试器中,它会在调用Ext.getCmp();

时发生轰炸

2 个答案:

答案 0 :(得分:1)

你确定你使用的是ExtJS(源文件ext-all.js)而不是Ext Core(源文件ext-core.js)吗?

Ext.getCmp()是ExtJS库的一部分,在Ext Core中不存在。

答案 1 :(得分:0)

你的应用程序是否能正常运行?

检查所有包含内容,应在ext-all.js之前添加适配器