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>