how can i hide in runtime the title of panel??
this is my code:
{
xtype: 'panel',
id: 'pnlAllCenter',
border: false,
layout: {
align: 'stretch',
type: 'vbox'
},
title: '<center>Main Application</center>'
}
now in runtime i need to hide this title! (i need something like this Ext.getCmp('pnlAllCenter').title.remove();)
thanks!!