How can i access or reference the TitleBar
component which is inside a Ext.Panel
code
Ext.define('appv.view.ContactInfoPanel',{
extend:'Ext.Panel',
xtype:'contactinfopanel',
requires: [ 'Ext.TitleBar','contactapp.view.ContactInfo'],
config:{
layout:'vbox',
items:[{
xtype: 'titlebar',
height:'65px',
center:true
},{
xtype:'contactinfo',
}]
},
initialize:function(){
// Here i want to access the TitleBar and set its title dynamically
}
});