我有一个煎小提琴:

https://fiddle.sencha.com/#fiddle/4gr

TBar按钮在所有选项卡中均可见,因为它是选项卡面板的tbar。

我想大家都同意,“ TBar按钮”只要位于现在的位置,就应该只对活动选项卡起作用,对吗?

因此,到底如何才能将tbar显示在选项卡上方,从而使用户可以直观地正确猜出它对所有选项卡都有效?

最佳答案

您可以使用tools选项来为整个选项卡面板配置按钮,而不是使用tbar。

    var panel = Ext.create("Ext.tab.Panel", {
        layout: 'fit',
        width: 500,
        height: 500,
        autoRender: true,
        tools: [{
            xtype: 'button',
            text: 'TBar Button'
        }],
        items: [{
            xtype: 'panel',
            title: 'A'
        }, {
            xtype: 'panel',
            title: 'B'
        }]
   });

关于javascript - 在标签上方显示tbar,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22643451/

10-12 13:14