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
You can just use the config
Ext.panel.Panel({ // title: 'Test', to neglet this header:false, tools: [{ type: 'refresh' }, { type: 'help' }], });
"header:false config documentation"