I have a ExtJS panel inside a viewport center region. I want to hide the title of the panel. How can I do it? I\'m using xtype config for declaring the panel.>
xtype config
Use preventHeader property. I checked it and it's worked
See example below
Ext.widget('panel', { title: 'Panel header will not be shown', preventHeader: true, width: 300 });