Is there a possibility to use both outcome and action in the same command link?
I tried
<h:commandLink outcome="page?faces-redirect=true"
value="Got to Page"
action="#{Bean.setValue("...")}" />
but it ignores the outcome.
I have a table with data like this: ID Name Other Things Link to Next Page
So I want to give the ID to the next page to show data which belongs to the selected ID from before... How could I realize this?