将组件放置在选项卡视图顶部失败
如何将 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>
How to position a commandButton
on top of tabview
header ?
I tried out this but failed to position the commandButton
on top of tabview
. Instead the commandButton
gets hidden by the 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>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您将
position:absolute;
添加到您的
样式它将位于
之上。If you add
position:absolute;
to your<h:commandButton>
style it will be on top of the<p:tabView>
.