i have a o:datatable with pagination. Here is the code:
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>
At the most I have 2 pages, not more and to navigate from page 1 to page 2 works, but when I am on page 2 I can't naviagte back to the first page.
Can anyone help me please?