我在手风琴面板的标签页面中有一个DefaultMenuModel。
现在菜单位于acccordion面板的选项卡后面,我喜欢更改菜单的z-index,它将位于选项卡的前面。
看起来像:
我尝试了以下内容:
<?xml version="1.0" encoding="UTF-8"?>
<ui:composition xmlns="http://www.w3.org/1999/xhtml" xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:p="http://primefaces.org/ui" template="/templates/template.xhtml">
<ui:define name="window_title"/>
<ui:define name="content">
<h:form id="exportForm" style="height:100%">
<p:growl id="growl" showDetail="true" />
<p:accordionPanel id="memberPanel" multiple="true" activeIndex="1" styleClass="test1">
<p:tab title="#{messages['member_filter']}">
<table>
<tr valign="top">
<td>#{messages['export_filter']} <br></br>
<p:tieredMenu styleClass="test2" id="type" model="#{dynamicFilterMenuExport.menu}" />
</td>
<td><p:spacer width="10" /></td>
<td>#{messages['export_filter_select']}<br></br>
<br></br> <!-- more Code-->
</tr>
</table>
</p:tab>
<p:tab title="#{messages['menu_Members']}" >
<!-- datatable etc. -->
</p:tab>
</p:accordionPanel>
</h:form>
</ui:define>
</ui:composition>
我的css看起来像:
.test1 {
position: relative;
z-index: 1000 !important;
}
.test2 {
position: relative;
z-index: 2000 !important;
overflow:visible !important;
}
有没有人知道如何解决它?
答案 0 :(得分:0)
经过几个小时的搜索,我发现答案是调整css。 现在,它与以下代码完美配合:
.ui-accordion-content {
overflow:visible !important;
}