ExtJ は初めてです。パネル 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 を取得しています。
前もって感謝します。