0
如何在JSF 1.2中使用h:commandButton將變量傳遞給託管bean。我們有<f:param>
和<f:attribute>
,它在JSF 2中工作。有沒有類似於JSF 1.2中的方式來傳遞值。在JSF 1.2中將值傳遞給commandButton中的bean
謝謝。
如何在JSF 1.2中使用h:commandButton將變量傳遞給託管bean。我們有<f:param>
和<f:attribute>
,它在JSF 2中工作。有沒有類似於JSF 1.2中的方式來傳遞值。在JSF 1.2中將值傳遞給commandButton中的bean
謝謝。
您可以使用該f:setPropertyActionListener
:
<h:commandButton style="display: none;"
action="#{chAction.selectClient}" immediate="true">
<f:setPropertyActionListener target="#{chAction.selectedClientId}"
value="#{res.clientId}" />
</h:commandButton>