我是 ExtJs 的新手。我在获取面板 html 内容的面板中遇到了问题。
xtype : 'panel',
id : 'first_block',
html : '<p>Hi this is belongs to first block.</p>',
listeners : {
render : function(c) {
c.body.on('click', function() {
alert('' + this.id);
alert(Ext.getCmp('first_block').items.getAt(0).getValue());
});
}
我没有得到 html 内容,但我得到了像“first_block-body”这样的 id。
提前致谢。