You can also employ an easy way to go back to the previous page by passing the 
current page to the next page. It's been pretty useful for us. Or even telling 
the page which page to goto next.

Small pseudo snipplet:


public class mypage extends WebPage {

public mypage(final Page Previous, final Page next, Model model) {

on next button: setresponse(next);

on previous: setresponse(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 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 context: 
http://www.nabble.com/Navigation-between-pages-tf3265417.html#a9077111
Sent from the Wicket - User mailing list archive at Nabble.com.


-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys-and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Wicket-user mailing list
Wicket-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/wicket-user

Reply via email to