I have a form, that has 3 buttons. (finish, save, cancel)
finish should end an task and navigate back to the task-overview. save should save the changes made and navigate back to the task-details cancel shouldn' save anything but navigate back to the details.
The problem is now for "save": I wan't to submit the form and call an actionListener to do the "saving". but then i want to pass an id to the "navigation outcome" of the button also
in plain html, it would look like this:
<form action="taskDetails?id=5" method ="post">
....
</form>
so all params are submitted using POST, but the id is then available via GET.
How can i achieve this with JSF Forms?
My button currently looks like:
<h:form>
...
<p:commandButton action="taskDetails" actionListener="taskEditBean.saveTask()" value="Save" />
</h:form>
using f:params like this:
<h:form>
...
<p:commandButton action="taskDetails" actionListener="taskEditBean.saveTask()" value="Save">
<f:param name="id" value="5" />
</p:commandButton>
</h:form>
are submitted using POST also...
