Re: [Wicket-user] Wicket 2.0 : DropDownChoice losing selected-value after going to interception page?

2007-01-22 Thread Scott Swank
Typo correction... class NextPage extends WebPage { public NextPage(final Page prev) { add(new Link("back") { public onclick() { setResponsePage(prev); } } } } On 1/22/07, Igor Vaynberg <[EMAIL PROTECTED]> wrote: instead of doing all that redirect foo why dont you pass

Re: [Wicket-user] Wicket 2.0 : DropDownChoice losing selected-value after going to interception page?

2007-01-22 Thread Igor Vaynberg
instead of doing all that redirect foo why dont you pass the instance of the current page to the new page you are redirecting to when the button is pressed. then to go back just set response page to that passed in instance. class NextPage extends WebPage { public NextPage(final Page prev) {

[Wicket-user] Wicket 2.0 : DropDownChoice losing selected-value after going to interception page?

2007-01-22 Thread Harald Geritzer
hi all, i got some strange behaviour here. i have a page with a compound property model including some textfields and dropdownchoices and a button, which redirects to another page. after coming back to the first page by using getPage().continueToOriginalDestination() the textfields are filled