在JSF 1.2中的commandButton中将值传递给bean

时间:2014-02-24 05:15:38

标签: jsf-1.2

如何在JSF 1.2中使用h:commandButton将变量传递给托管bean。我们正在使用<f:param><f:attribute>在JSF 2中工作。在JSF 1.2中是否有类似的方式来传递值。

谢谢。

1 个答案:

答案 0 :(得分:0)

您可以使用f:setPropertyActionListener

    <h:commandButton style="display: none;"
        action="#{chAction.selectClient}" immediate="true">
        <f:setPropertyActionListener target="#{chAction.selectedClientId}"
            value="#{res.clientId}" />
    </h:commandButton>