我想自定义PrimeFace的数据表分页。
它目前在底部显示页数为:(1 of 5)
。我想在记录总数中显示一页中的记录数,例如:(1-10 of 50)
.
我在下面包含了我的代码 - 但它不起作用。有人可以帮忙吗?
<p:dataTable id="tblStatusSearch" var="item" rowIndexVar="rowStatusSearch"
rows="10" paginator="true"
paginatorTemplate="{CurrentPageReport}
{FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} "
value="#{StatusAction.listEBeans}"
<f:facet name="footer">
<h:outputText value="#{rowStatusSearch + 1} - 10 out of #{bondLocationStatusAction.itemCount}"/>
</f:facet>