jsf - transfer parameter to next request -


I have a situation where clicking on a link in a column on the dataapp opens an update form in the same page . The problem is that when I suppress the submit button for updates, the render of the update panel is set to false again, which by clicking on the link was already correct.

I tried htmlhiddenInput and set and getvalue but the value is lost, by any means can I send that parameter to the link, whenever clickable can be clicked, submit the form Even after I have achieved it in the session, but I do not want to use the session.

Any help is appreciated, thanks.

If you are on JSF 2.0, announce @ViewScoped . If you are still on JSF 1.x then install and use to maintain bean property or even whole beans in the request later. E.g.

  & lt; T: saveState value = "# {bean.renderTable}" />  

or

  & lt; T: saveState value = "# {bean}" />  

Comments