ページネーション付きの ao:datatable があります。コードは次のとおりです。
enter code <o:dataTable id="table" value="#{Bean.vproduct}" var="product" pageSize="3">
<f:facet name="header">
<h:outputText value="Header" styleClass="title"/>
</f:facet>
<o:column>
<h:panelGrid columns="1">
<h:outputText value="#{product.description}"/>
</h:panelGrid>
</o:column>
<f:facet name="below">
<h:panelGroup id="panelGroup">
<o:dataTablePaginator id="paginator"/>
</h:panelGroup>
</f:facet>
せいぜい2ページしかなく、1ページから2ページに移動することはできますが、2ページ目にいるときは最初のページに戻ることができません。
誰でも私を助けてもらえますか?