Hide ExtJS Panel Title

后端 未结 3 1878
被撕碎了的回忆
被撕碎了的回忆 2021-01-11 10:31

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.

3条回答
  •  抹茶落季
    2021-01-11 11:14

    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"

提交回复
热议问题