2

我在 adf web fusion 应用程序中有多级树表,我想根据表中的列过滤这棵树,我的树看起来像:

<af:treeTable value="#{bindings.AccountsView1.treeModel}" var="node"
              selectionListener="#{bindings.AccountsView1.treeModel.makeCurrent}"
              rowSelection="single" id="tt1" partialTriggers="::cb1">
  <f:facet name="nodeStamp">
    <af:column id="c1" headerText="Id">
      <af:outputText value="#{node.Id}" id="ot1"/>
    </af:column>
  </f:facet>
  <f:facet name="pathStamp">
    <af:outputText value="#{node}" id="ot2"/>
  </f:facet>
  <af:column id="c2" headerText="Name">
    <af:outputText value="#{node.Name}" id="ot3"/>
  </af:column>
  <af:column id="c3" headerText="Kind">
    <af:outputText value="#{node.Kind}" id="ot4"/>
  </af:column>
</af:treeTable>

我的树有六个层次。我想使用种类 NO 过滤所有级别。

4

0 回答 0