我有一个 Ext 面板,我想从一些变量中设置面板的标题。
我有id
面板的,我需要从中设置面板的标题。
我正在寻找这样的东西,
Ext.getCmp('myPanel').setTitle();
喜欢属性
Ext.define('Myapplication.view.Contacts', {
extend: 'Ext.Panel',
alias: 'widget.Contacts',
id: 'myPanelID',
----
-----
------
-----
listeners: [
{
fn: 'initComponent',
event: 'initialize'
}
]
},
initComponent: function(component, options, wstitle) {
Ext.getCmp('myPanelID').header.title = ('Title of panel'); //Not working
Ext.getCmp('myPanelID').setTitle= ('Title of panel'); //Not working
}
总是出错:
TypeError: 'undefined' 不是一个对象(评估'Ext.getCmp('myPanel').setTitle')