Re: [Wicket-user] onGoingBack2Page(+innerForm) = innerForm.fields = empty!?

2007-04-25 Thread manu
Actually the flow page1ToPage2 it's done by form submission, i.e., all form is correctly processed. The matter was when going back from Page2...N to Page1. It was happening that the inerForm page1.Form1 was not keeping state (fields were null). After reviewing the code, I noticed that I was

[Wicket-user] onGoingBack2Page(+innerForm) = innerForm.fields = empty!?

2007-04-24 Thread manu
Dear Sirs, The scenario is the following: - Page1 Form1 (innerClass) input1(String)... inputN(String) - Page2 Link/Button (whatever for going back to Page1 - has a reference object of Page1) ... - PageN Link/Button (idem) It happens that, when flowing-back from Page2, or... PageN, to

Re: [Wicket-user] onGoingBack2Page(+innerForm) = innerForm.fields = empty!?

2007-04-24 Thread Igor Vaynberg
you cannot navigate from page1-page2 via a link because that will not submit the form, and so you will lose all your values. try submitlink and make sure there are no form errors - ie all models have been updated with proper values - and then navigate to page2. -igor On 4/24/07, manu [EMAIL