gpt4 book ai didi

javascript - Ext.getCmp ('panel' ) 给出 this.el 为空或不是对象

转载 作者:行者123 更新时间:2023-11-30 13:17:11 25 4
gpt4 key购买 nike

我有一个边框布局,我必须在其中展开和折叠东部区域以获得某些 View ,屏幕在开始时工作正常,但是当您单击浏览器的刷新按钮并且如果东部区域折叠时,您会看到东部区域已折叠,根据我的理解,这不应该发生,因为 extJS 代码是从每次刷新时开始,因此刷新后东部区域必须可见。

使东部地区在每次用户点击刷新时扩展我尝试了以下

    Ext.getCmp('center_panel').add({
id: 'center_panel_container',
layout: 'border',
defaults: {
'border': true
},
items:[{
id : 'header_panel',
layout: 'fit',
region: 'north',
height: 30,
items: [tbar]
},{
id: 'master_panel',
layout: 'fit',
region: 'center',
width: '60%',
bodyStyle:{"background-color":"white"},
autoScroll: true,
items: [panelLeft,panelLeftSchd,panelLeftStartUp]
}, {
id: 'report_panel',
layout: 'fit',
region: 'east',
width : '40%',
split:true,
autoScroll: true,
items: [panelRight, panelRightStartUp]
}]
});
Ext.getCmp('report_panel').expand(true);

但我收到以下错误 this.el is null or not an object

如何在用户每次点击刷新时让东部区域展开

谢谢,

最佳答案

发生这种情况是因为 Ext.getCmp('report_panel') 在您尝试调用其扩展方法时未呈现。这是因为 Ext-JS 有时在布局组件时使用 setTimeout。最简单的解决方案是等待渲染事件并从该处理程序调用扩展

{
id: 'report_panel',
layout: 'fit',
region: 'east',
width : '40%',
split:true,
autoScroll: true,
items: [panelRight, panelRightStartUp],
listeners: {
render: function(panel) {
panel.expand()
}
}
}

也可以等待父容器的afterlayout事件

关于javascript - Ext.getCmp ('panel' ) 给出 this.el 为空或不是对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11616907/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com