2

JSF2.1複合コンポーネントで、f:paramを複合コンポーネント(コマンドボタン)に渡して、そのコンポーネントをeditableValueHolderとして受信しようとすると、機能していないようですが、

何か案は?

 <mycomp id="button" outcome="newpage" >
    <f:param name="foo" outcome="bar" for="button"/>
  </mycomp>


 compositeComponent....
  <cc:interface>
    <cc:attribute name="action" targets="commandLink" required="true" />       
  </cc:interface>
  <cc:implementation>
    <h:commandLink id="commandLink"  action="#{cc.attrs.action}">

    </h:commandLink>
  </cc:implementation>
4

1 に答える 1

2

を使用し<cc:insertChildren>ます。

<h:commandLink ...>
    <cc:insertChildren />
</h:commandLink>
于 2012-06-04T16:39:54.947 に答える