<p:column> 里面的filterBy 的功能
yang375160795
2011-07-30
<p:column filterBy="#{info.code}" <h:outputText value="#{info.code}" /> </p:column>
值是从数据库里取出来的, 在表头上显示的文本框, 我输入的值如何实现查询的功能? 现在的功能不好用。 |
|
klxwcx
2011-08-01
<p:column filterBy="#{info.code}" filterMatchMode="contains">
<h:outputText value="#{info.code}" /> </p:column> 这么试下 |