2

我有一个这样的项目(JSFiddle Demo):

{
    region: 'west',
    title: 'Instead of toolbar',
    collapsible: true,
    width: 250,
    tbar: [{
        xtype: 'button',
        text: 'Button',
        style: {
            background: 'green'
        },
        handler: function() {}
    }]
}

我想要我的tbar而不是像 (1->2) 这样的标题

在此处输入图像描述

我试图删除标题,但它不起作用。怎么做谢谢:)。

4

1 回答 1

6

去掉标题并将相同的折叠工具添加到工具栏:

{
    region: 'west',
    collapsible: true,
    header: false,
    width: 250,
    tbar: [
        {
            xtype: 'button',
            text: 'Button',
            style: {
                background: 'green'
            },
            handler: function (){}
        },
        '->',
        {
            type: 'left',
            xtype: 'tool',
            handler: function(t) {
                this.up('panel').collapse();
            }
        }
    ]
}
于 2013-06-15T03:14:17.647 回答