4

我正在使用 ExtJS 4 并尝试在选项卡面板标题上添加按钮。请看看这个jsfiddle:

http://jsfiddle.net/ramarajuv/Sadnj/7/。您可以看到它仅使用两个选项卡就可以正常工作。现在,通过添加 tabBar 来修改相同的代码,如下所示:

Ext.create('Ext.panel.Panel',{
    renderTo : Ext.getBody(),
    id : 'testPanel',
    height : 200,
    width : 300,
    items: [{
        xtype : 'tabpanel',
        activeTab : 1,
        tabBar:[{
            dockedItems:[{ 
                xtype: 'button',
                text : 'Test Button'
            }]
        }],        
        items: [{     
            title: 'tab1'
        },{                  
            title: 'tab2'
        }]
     }]
});

没有引发 Javascript 错误,但我想在选项卡面板标题右侧看到的按钮没有出现。你能帮我在标签面板上调出一个按钮吗?

4

3 回答 3

8

如果我理解您的问题,您似乎希望按钮位于 tabBar 本身而不是它自己的工具栏中?如果是这种情况,那么您可以使用此小提琴中提供的以下代码。

http://jsfiddle.net/Sadnj/15/

Ext.create('Ext.panel.Panel', {
    renderTo: Ext.getBody(),
    id: 'testPanel',
    height: 200,
    width: 200,
    items: [{
        xtype: 'tabpanel',
        activeTab: 1,
        tabBar: {
            items: [{
                xtype: 'tbfill'
            }, {
                xtype: 'button',
                text: 'Test Button'
            }]
        },
        items: [{
            title: 'tab1',
        }, {
        title: 'tab2',
        }]
    }]
});
于 2013-08-14T12:12:12.253 回答
1

你可以使用这个:

Ext.create('Ext.panel.Panel',{
    renderTo : Ext.getBody(),
    id : 'testPanel',
    height : 200,
    width : 200,
    items: [{
        xtype : 'tabpanel',
        activeTab : 1,
        tbar:[{
                text : 'txtButton'
        }],
        items: [{     
            title: 'tab1'
        },{                  
            title: 'tab2'
        }]
    }] 
});

这将为您的标签面板制作按钮。

于 2013-08-13T03:56:55.163 回答
0

只需使用以下命令将按钮添加到标签面板标题:

tabBar: {
            items: [
                { xtype: 'tbfill' },//fill the empty space between left and right
                {
                    xtype: 'button',
                    text: 'Button 1'
                }
            ]
        }
于 2018-10-29T06:19:19.727 回答