I want to dynamically set the title bar. And the following does not seem to work! Any ideas? Thanks in advance!
Ext.create('Ext.panel.Panel', { id: 'p0', title: 'Hello World', width: 200, html: '<p>Lorem ispsum doler sit</p>', renderTo: Ext.getBody() }); Ext.getCmp('p0').title = 'Bye World'; //does not work! Ext.getCmp('p0').header.title = 'Bye World'; //does not work either!
source share