我的数据表中有一个使用 Primefaces 的精确过滤器功能的列。
我需要在foo1上设置数据表的默认过滤器,但它是在all上设置的。
<p:column filterMatchMode="exact"
filterOptions="#{bean.filterFooOptions}"
filterBy="#{row.foo}">
<f:facet name="header">
<h:outputText value="Foo" />
</f:facet>
<h:outputText value="#{row.foos}" />
</p:column>
以及在我的 bean 中获取过滤器选项的方法:
public SelectItem[] getFilterFooOptions() {
if (items == null) {
items =
new SelectItem[] { new SelectItem(Foo.foo1.name()),
new SelectItem(Foo.foo2.name()), new SelectItem("", "all")};
}
return items;
}