数据列表分页primefaces mobile 5.2无法正常工作

时间:2015-05-22 19:37:39

标签: primefaces pagination primefaces-mobile

我的datalist的分页不适用于primefaces mobile,它显示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>

我的maven pom.xml

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

感谢。

1 个答案:

答案 0 :(得分:0)

问题是glassfish仍然使用了primefaces 5.1,即使我把primefaces 5.2放在我的pom.xml中。所以我不得不删除我家中maven存储库中的所有primefaces文件夹:.m2 / repository / org / primefaces除了5.2。然后Glassfish使用5.2和分页工作!