有没有办法禁用Rich的默认滚动条:popupPanel

时间:2015-08-27 08:47:44

标签: jsf jsf-2 richfaces jsf-2.2

我正在使用<rich:popupPanel>标签,富:当数据很大时,弹出式面板提供默认滚动条,我使用的是自定义滚动条而不是此。 有没有办法隐藏由<rich:popupPanel>标记提供的默认滚动条。

<rich:popupPanel id="termEditPanel"
                 followByScroll="true"
                 autosized="true"
                 modal="true"
                 resizeable="false"
                 moveable="false"
                 styleClass="popup term-editor-panel"
                 rendered="#{agreements.agreement.editable}" 
                 zindex="1000">

1 个答案:

答案 0 :(得分:-1)

您可以向页面添加下一个样式以覆盖原生richfaces弹出式样式

<h:outputStylesheet>
        .rf-pp-cnt-scrlr {
            overflow: hidden !important;
        }
</h:outputStylesheet>

或使用样式

<rich:popupPanel id="category"
                     modal="true"
                     resizeable="false"
                     autosized="false"
                     width="300"
                     height="300"
                     styleClass="popUpMain"
                     style="overflow:hidden !important;"
                     domElementAttachment="form"
                     onmaskclick="#{rich:component('category')}.hide()">