OpenFaces数据表dataTablePaginator无法导航回来

时间:2012-04-23 18:02:13

标签: datatable openfaces

我有一个带分页的o: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页时,我无法导航回到第一页。

有人可以帮我吗?

1 个答案:

答案 0 :(得分:1)

我已经解决了这个问题。它与部分状态保存有关:

Getting class java.lang.ClassCastException for two consequent AJAX calls called from within a composite component

Jsf Error : java.lang.ClassCastException

我把它放在我的web.xml中,现在它可以正常工作

<context-param>
<param-name>javax.faces.PARTIAL_STATE_SAVING</param-name>
<param-value>false</param-value>
</context-param>