我的数据表显示结果,但没有按协议过滤,使用JSF工作,但promefaces没有显示任何内容,我的代码是:
<p:dataTable value="#{registroBean.listarRegistros()}"
var="registro"
widgetVar="registroTable"
id="tabelaRegistro"
class="table table-striped table-hover"
rendered="#{not empty registroBean.listarRegistros()}">
<f:facet name="header">
<p:outputPanel>
<p:inputText id="globalFilter" onkeyup="PF('registroTable').filter()" style="width:100%" placeholder="Digite o protocolo" />
</p:outputPanel>
</f:facet>
<p:column filterBy="{#registro.protocolo}">
<f:facet name="header">Protocolo</f:facet>
<h:outputText value="#{registro.protocolo}" />
</p:column>
</p:dataTable>
当我输入搜索结果时: 没有找到记录。
我做错了什么?
答案 0 :(得分:1)
您应该在Managed Bean中为过滤结果创建一个空ArrayList,并将其设置为DataTable,如下所示:
<p:dataTable value="#{registroBean.listarRegistros()}"
filteredValue="#{registroBean.filtredRegistro}"
var="registro"
widgetVar="registroTable"
id="tabelaRegistro"
class="table table-striped table-hover"
rendered="#{not emptyregistroBean.listarRegistros()}">
并在RegistroBean中使用getter和setter添加此attribut
private ArrayList<YourClass> filtredRegistro;
//Getter And Setter
public ArrayList<YourClass> getfiltredRegistro(){
return this.filtredRegistro;
}
public void setfiltredRegistro(filtredRegistro){
this.filtredRegistro=filtredRegistro;
}