将组件定位在tabview顶部失败

时间:2011-07-18 18:15:19

标签: jsf primefaces

如何将commandButton放在tabview标题的顶部?

我尝试了这一点,但未能将commandButton置于tabview之上。相反,commandButton

会隐藏tabview
        <h:commandButton value="View all" style=" float:right;  z-index: 1000;" />

        <p:tabView style=" z-index: 5;" >

            <p:tab ...>
            </p:tab>

            <p:tab ...>
            </p:tab>

        </p:tabView>

1 个答案:

答案 0 :(得分:0)

如果您将position:absolute;添加到<h:commandButton>样式,它将位于<p:tabView>之上。