Monday, 26 August 2013

access titlebar which is inside Ext.Panel

access titlebar which is inside Ext.Panel

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
}
});

No comments:

Post a Comment