数据列表分页 primefaces mobile 5.2 不工作

Data List pagination primefaces mobile 5.2 not working

我的数据列表的分页在 primefaces 移动设备上不起作用,它显示 1000 行而不是 5 行!我将我的 pf 版本从 5.1 更改为 5.2,但没有任何反应。我检查了展示并阅读了 pf 5.2 指南,但没有找到解决方案。这是我的代码:

listPromotion.xhtml

<ui:composition 
xmlns="http://www.w3.org/1999/xhtml"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:pm="http://primefaces.org/mobile"
xmlns:p="http://primefaces.org/ui"
xmlns:pt="http://xmlns.jcp.org/jsf/passthrough"
>
<pm:header title="Vos promotions"></pm:header>
<pm:content>

    <h:form id="form2">
        <p:outputPanel autoUpdate="true">                
            <p:dataList value="#{partnerListPromotion.promotions}" 
                        var="promotion" 
                        pt:data-inset="true" 
                        paginator="true" 
                        rows="5">                   
                <p:commandLink 
                     action="#{partnerListPromotion.
                               goToPartnerDetailPromotion(promotion)}"/>                        
                </p:dataList>  
        </p:outputPanel>
    </h:form>
</pm:content>

index.xhtml 请注意 dev.xtml 只是访问 listPromotion.xhtml.

的一种方式
<html xmlns="http://www.w3.org/1999/xhtml"
  xmlns:h="http://xmlns.jcp.org/jsf/html"
  xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
  xmlns:pm="http://primefaces.org/mobile"
  xmlns:f="http://xmlns.jcp.org/jsf/core"
  xmlns:p="http://primefaces.org/ui">
<f:view renderKitId="PRIMEFACES_MOBILE" />
<h:head>
    <script type="text/javascript" src="javascript/geolocalisationPartner.js"></script>
    <script type="text/javascript" src="javascript/refreshTimePromotion.js"></script>
</h:head>
<h:body>
    <!-- dev -->
    <pm:page id="dev" lazy ="false">
        <ui:include src="trash/dev.xhtml"/>
    </pm:page>
    <pm:page id="partnerListPromotion" lazy="true">
        <ui:include src="/Partner/listPromotion.xhtml"/>
    </pm:page>
</h:body>

我的专家pom.xml :

<dependency>
        <groupId>org.primefaces</groupId>
        <artifactId>primefaces</artifactId>
        <version>5.2</version>
</dependency>

谢谢。

问题是,即使我将 primefaces 5.2 放入 pom.xml,glassfish 仍然使用 primefaces 5.1。所以我不得不删除我家 Maven 存储库中的所有 primefaces 文件夹:.m2/repository/org/primefaces 除了 5.2。然后 Glassfish 使用 5.2 并且分页有效!