ashwani sinha wrote:
In my case, page have lots of requests that I want to retained in new page. could you please elaborate more on how to access the original values.
- thanks in advance.
I still use only JSF 2 so I do not know how this would work with JSF 1 but for example I use the temporay storage called Flash.
In the first action I use
and then in the receiving side in xhtml I use
and then in java code inside the loadDefaultValues method I get the contents with
Or if I just want to give simple parameters to receiving side I might use something like this (remove the blanks after & sign)
and then in the xhtml I use them with
These are maybe not optimized versions and there probably are easier ways of course...