使用selectManyCheckbox的Primefaces,scrollPanel

时间:2012-08-31 12:54:13

标签: checkbox primefaces scroll

我如何使用带有复选框的p:scrollpanel,我尝试过这样,但它没有用到:

    <p:scrollPanel mode="native" >
                <h:panelGrid>
                    <p:selectManyCheckbox value="#{localCobrancaBean.selectLocaisCobranca}"> 

                        <f:selectItems value="#{localCobrancaBean.listaLocalCobranca}" />  

                    </p:selectManyCheckbox>
                </h:panelGrid>

            </p:scrollPanel>

3 个答案:

答案 0 :(得分:0)

我使用以下JSF进行了测试:

<p:scrollPanel mode="native">
    <h:panelGrid>
        <p:selectManyCheckbox>
            <f:selectItem itemLabel="asdfghgfd" />
            <f:selectItem itemLabel="zdvdfbdfvds" />
            <f:selectItem itemLabel="zdcdghnfw" />
            <f:selectItem itemLabel="sddfvdfv" />
        </p:selectManyCheckbox>
    </h:panelGrid>
</p:scrollPanel>

这是结果:

checkbox vertical scroll

所以它似乎正在发挥作用。

答案 1 :(得分:0)

在我看来,解决方案是将scrollpanel模式设置为native。问题是关于scrollpanel和selectmanycheckbox DOM的相对和绝对定位

答案 2 :(得分:0)

在我的应用程序中,我使用下面的代码集来获取带滚动条的多个复选框列表:

<style type="text/css">
#productCategoryId label {
  float: inherit;
  font-size: 10px!important;
  font-weight: normal;
}
#productCategoryId table.formTable th, table.formTable td {
  padding: 0px 0px 0 0;
}
</style>

<div style="width:200px;height: 280px;overflow-y:scroll;overflow-x:hidden;border:1px solid #999;" max-height=280px>
             <h:selectManyCheckbox  id="productCategoryId" layout="pageDirection" style="width:200px" styleClass="changeId">
                  <f:selectItem itemValue="-1000" itemLabel="ALL" />
                  <f:selectItems value="#{lookup.list['RSM_LOOKUP']['PRODUCT_CATEGORY']}"/>
                </h:selectManyCheckbox >
            </div>