日历隐藏在手风琴组件中

时间:2012-06-27 17:39:00

标签: jsf richfaces

日历组件隐藏在手风琴项目后面,无论您为组件分配什么z-index值,对于手风琴/日历它只是不会让步,有人可以帮助我。我正在使用RichFaces 4.2.0。

示例代码:

<h:form>
   <rich:accordion style="z-index:10;" id="acrdion" switchType="client">
        <rich:accordionItem id="acdItm" header="Overview:">
         <rich:calendar value="#{bean.date}" datePattern="dd/M/yy" 
                    id="Cal1" style="z-index:100;"/>
        </rich:accordionItem>
   </rich:accordion>
<h:form>

1 个答案:

答案 0 :(得分:2)

您可以通过覆盖rf-ac-itm-cnt类来解决此问题,如下所示:

<h:outputStylesheet>
        .rf-ac-itm-cnt {
           overflow: visible;
        }
</h:outputStylesheet>