Primefaces ajax分页不起作用

时间:2013-12-18 13:35:05

标签: ajax jsf primefaces

我有以下jsf页面,其中数据表是通过来自数据库的ajax请求填充的。问题是,在分页栏上按下另一个页面按钮后,表格显示没有结果。将支持bean的范围更改为会话有帮助,但它不是解决方案。为什么会这样?

    <h:form>
            <h:panelGrid columns="2" cellpadding="8" style="width: 545px">          
                <h:panelGroup>
                    <p:outputLabel value="Client name: " for="searchString" />
                    <br />                  
                    <p:inputText id="searchString" title="searchString" value="#{findClientBean.searchString}" />                       
                </h:panelGroup>
                <h:panelGroup>
                    <br />
                    <p:message for="searchString" />
                </h:panelGroup>             
                    <p:commandButton value="Search" styleClass="pCommandButton" >
                    <f:ajax execute="searchString" listener="#{findClientBean.findClient}" render=":resultTable" />
                    </p:commandButton>                                  
            </h:panelGrid>                  
            </h:form>
            <br />
            <p:dataTable id="resultTable" var="client" value="#{findClientBean.resultList}" paginator="true" rows="10"  
                 paginatorTemplate="{CurrentPageReport}  {FirstPageLink} {PreviousPageLink} {PageLinks} {NextPageLink} {LastPageLink} {RowsPerPageDropdown}"  
                 rowsPerPageTemplate="5,10,15" paginatorPosition="bottom">
                <p:column headerText="Search results">
                    <h:outputLink value="../temp.xhtml?id=#{client.id}">#{client.firstName} #{client.lastName}</h:outputLink>
                </p:column>
            </p:dataTable>
        <h:form>

支持bean代码:

@Named
@RequestScoped
public class FindClientBean implements Serializable {

@Inject
private ClientDAO clientDAO;    
@NotNull(message="Search string cannot be empty")   
private String searchString;
private List<Client> resultList;        

public void findClient() {
    resultList = clientDAO.findClientByNameOrLastnamePart(searchString);
}

public void setResultList(List<Client> resultList) {
    this.resultList = resultList;
}

public List<Client> getResultList() {
    return resultList;
}

public String getSearchString() {
    return searchString;
}

public void setSearchString(String searchString) {
    this.searchString = searchString;
}
}

1 个答案:

答案 0 :(得分:2)

只要用户按下“搜索”按钮,就会填充您的客户端resultList。

由于集合在RequestScoped bean中,因此一旦将resultList发送回View(以及整个bean),resultList将被删除。

因此,当用户尝试导航到另一个页面(从而发出第二个请求)时,组件将不再找到填充的resultList,并且将显示“未找到记录”消息。

将你的bean“推广”到 ViewScoped (或任何可以让你的bean活得更久的范围)。

@Named
@ViewScoped
public class FindClientBean implements Serializable{
(...)
}