David,
By default, the form in xxx.jsp will contain the same values as before
the transition. Only when the backing bean is in request scope and your
button/link has immediate="true" set, the values won't remain. If the
backing bean is in session scope or immediate="true" hasn't been set,
the same values will remain in the form.
If you do want to clear the form, I suggest you transition between both
pages using an action method and reset the backing bean in that method.
What exactly is it you are trying to achieve? Perhaps there is another
way to reach your goals...
Regards,
Gert Vanthienen
[EMAIL PROTECTED]
David Delbecq wrote:
Hello,
Is it correct to assume a transition from xxx.jsp to the same xxx.jsp,
following a navigation-rule after an action creates a brand new form
(recreation of all components, submitted value are not linked to those
components)