如何在JSF 1.2中使用h:commandButton将变量传递给托管bean。我们正在使用<f:param>
和<f:attribute>
在JSF 2中工作。在JSF 1.2中是否有类似的方式来传递值。
谢谢。
答案 0 :(得分:0)
您可以使用f:setPropertyActionListener
:
<h:commandButton style="display: none;"
action="#{chAction.selectClient}" immediate="true">
<f:setPropertyActionListener target="#{chAction.selectedClientId}"
value="#{res.clientId}" />
</h:commandButton>