好的。所以我正在尝试使用commandLinks 实现一个全局过滤器。这个想法是有一个commandLinks的字母表,然后用户可以使用它而不是输入字母。
到目前为止,我已经对列进行了过滤(一旦 commandLinks 工作,将添加 filterStyle none)。
使用 chromes 调试工具 (ctrl-shift+i),然后单击命令链接,我可以看到数据表刷新列表。但是,它不会过滤任何内容。
我一直在使用 primefaces 展示,这个堆栈溢出帖子作为我的代码的基础,如下所示:
<p:dataTable id="availableSpecies" var="species" value="#{bbWizardBean.speciesPaletteList}"
emptyMessage="Add First Species" dynamic="true"
width="120"
widgetVar="speciesPaletteVar"
scrollHeight="250" scrollRows="20" scrollable="true"
styleClass="width-fix-spcPal-ie" style="width:150px; margin-left: auto; margin-right: auto;"
filteredValue="bbWizardBean.speciesPaletteListFilter">
<f:facet name="header">
<h:outputText value="Species Palette" />
<p:commandLink id="globalFilter" value="A" onclick="$('speciesColumn_filter').val('A'),speciesPaletteVar.filter()"/>
</f:facet>
<p:column filterBy="#{species.speciesName}"
headerText="Species" style="font-size:13px;" id="speciesColumn">
<h:outputText id="dragIcon" value="#{species.speciesNameSmall}" style="font-size:11px; background-color:silver; cursor:move;"/>
<h:outputText id="dragIconTooltip" value="..." title="Full Name: #{species.speciesName}" rendered="#{species.speciesNameLength > 10}"/>
<p:tooltip for="dragIconTooltip" />
<p:draggable for="dragIcon" revert="true" />
</p:column>
我删除了表格的其余部分以使代码库更小。我想我搞砸了我应该设置的值,但我不太确定如何设置。任何帮助,将不胜感激!第一篇文章,所以任何清理问题的建议都值得赞赏;)