java - Primefaces p:dataTable showing without message "No records found."? -


i have p:datatable:

<p:datatable var="ind" value="#{logindpersistbean.list}" paginator="true" rows="10"                         id="table"  rowstyleclass="odd-row, even-row">                          <f:facet name="header">                             list of logs                         </f:facet>                          <p:column headertext="name" >                             <h:outputtext value="#{ind.name}"/>                         </p:column>                          <p:column headertext="date" >                             <h:outputtext value="#{ind.date}" />                         </p:column>                          </p:column>                  </p:datatable> 

when start new search, if none register returns, datatable show message "no records found.", there way datatable show empty message, empty list ?

if it's relevant i'm using primefaces 4.0

enter image description here

thanks in advance.

add emptymessage="" data table attributes.


Comments

Popular posts from this blog

mysql - FireDac error 314 - but DLLs are in program directory -

git - How to list all releases of public repository with GitHub API V3 -

c++ - Getting C2512 "no default constructor" for `ClassA` error on the first parentheses of constructor for `ClassB`? -