Peter Dawn schreef:
guys,
i have a form which a user fills in with their information. now when
they click on submit, i want to display a confirmation page,
displaying all the information the user has already filled in and once
they confirm process the information.
now how can i pass on information from one page to another. i mean
somehow i need to send this information from the form page to the
confirmation page and display it for confirmation.
Hi Peter,
have you tried this from your listener method on the Form Page?
YourConfirmationPage page = (YourConfirmationPage)
cycle.getPage("YourConfirmationPage");
page.setValue1(value1);
page.setValue2(value2);
or you could just put all properties into a bean and set everything at once.
Since the confirmation-page has no form-components (display-only) you
also need a way to pass the values on over the next submit (user
confirmation).
You can either use hidden values for that or make the properties persistent.
Regards,
Onno
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]