Parameter « Glassfish « JSF Q&A





1. Passing Parameters ins JSF 2.0    stackoverflow.com

till now i used in JSF 1.2 commandLinks and the setPropertyActionListener to pass for e.g. the selectedItem of a DataTable.

<h:commandLink action="#{Result.show}" value="#{foo.name}">
<f:setPropertyActionListener value="#{foo}" target="#{Result.selectedFoo}"/>
</h:commandLink>
In an example JSF 2.0 and ...