JSF Pass parameter to another page
Posted
by DD
on Stack Overflow
See other posts from Stack Overflow
or by DD
Published on 2010-06-09T23:38:21Z
Indexed on
2010/06/09
23:42 UTC
Read the original article
Hit count: 161
jsf
In JSF how do you pass a parameter from one page to another without using managed beans?
e.g.
<h:dataTable value="#{myObjects}" var="object">
<h:column>
<h:commandButton value="View Object" action="view-object"/>
</h:column>
</h:dataTable>
I want to pass the object so an the next page I can simply do #{object.displayValue}
Thxs.
© Stack Overflow or respective owner