我有一个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>
当我开始新的搜索时,如果没有寄存器返回,则dataTable会显示一条消息“找不到记录。”,有没有办法让dataTable只显示一条空消息,只有空列表?
如果相关我正在使用primefaces 4.0
提前致谢。
答案 0 :(得分:3)
将emptyMessage =“”添加到数据表属性中。