GraphReportPanel = function (config, initData) {
GraphReportPanel.instance = this;


this.graphPanel = new Ext.Container({
    id : 'graphPanelId'
});

GraphReportPanel.superclass.constructor.call(this, {
    title : 'Graph',
    autoScroll: true,
    id : 'graphReportPanel',
    items: [this.graphPanel],
    collapsible : false
});

};


我已经创建了GraphReportPanel。现在,当我使用以下代码

Ext.getCmp('graphPanelId').el.dom.innerHTML = '';


我得到Ext.getCmp('graphPanelId').el为undefined。为什么会这样呢?

最佳答案

getEl()仅在呈现组件时才返回dom元素。在调用此方法之前,请检查组件是否已渲染。

希望能帮助到你。

07-28 09:11