Re: [Wicket-user] Navigation between pages

2007-02-22 Thread Nino Wael
21-02-2007 17:48 To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Navigation between pages Nino, Wouldn't that leave all of the pages in session? I.e. you expect to have 7 pages in history, but 7 points to 8, which points to 9, etc. Scott On 2/21/07, Nino Wael [EMAIL

Re: [Wicket-user] Navigation between pages

2007-02-22 Thread Eelco Hillenius
You think that should give problems? Not necessarily. But do keep in mind that as long as you have references to pages they can't be serialized. Alternatively, you could work with bookmarkable pages more and pass the class (and possibly parameter) for 'back' navigation. Not as pretty but more

[Wicket-user] Navigation between pages

2007-02-21 Thread Peter Klassen
Hi all, just one more trivial question; ;-) which possibilities do i got to navigate from one Webpage to another after an event is triggered? Thx in advance! Peter -- View this message in context: http://www.nabble.com/Navigation-between-pages-tf3265417.html#a9077014 Sent from the Wicket -

Re: [Wicket-user] Navigation between pages

2007-02-21 Thread Gohan
Well you could just use setResponsePage(new YourWebPage(..)); Peter Klassen wrote: Hi all, just one more trivial question; ;-) which possibilities do i got to navigate from one Webpage to another after an event is triggered? Thx in advance! Peter -- View this message in

Re: [Wicket-user] Navigation between pages

2007-02-21 Thread Nino Wael
: [Wicket-user] Navigation between pages Well you could just use setResponsePage(new YourWebPage(..)); Peter Klassen wrote: Hi all, just one more trivial question; ;-) which possibilities do i got to navigate from one Webpage to another after an event is triggered? Thx in advance! Peter

Re: [Wicket-user] Navigation between pages

2007-02-21 Thread Scott Swank
(previous); } Regards Nino -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gohan Sent: 21. februar 2007 09:36 To: wicket-user@lists.sourceforge.net Subject: Re: [Wicket-user] Navigation between pages Well you could just use setResponsePage(new

Re: [Wicket-user] Navigation between pages

2007-02-21 Thread Eelco Hillenius
On 2/21/07, Scott Swank [EMAIL PROTECTED] wrote: Nino, Wouldn't that leave all of the pages in session? I.e. you expect to have 7 pages in history, but 7 points to 8, which points to 9, etc. Yep, it would. This pattern works good for when you have dialogue style pages (gather some info and