Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I found a lot of example how to create back button in wicket but it was in wicket 1.4 and lower where they use getPageMap . This feature isnt in wicket 1.5. I know there are some js feature as window.history.back() or history.go(-1) but I want implement some clear solution. Any idea ?

My idea was to store webPage in my own webSesion as Stack. Is this good ?

public class TournamentSession extends WebSession {

protected final Logger logger = LoggerFactory.getLogger(getClass());

private static final long serialVersionUID = 1L;
private Stack<BasePage> previosPage = new Stack<BasePage>();

public TournamentSession(Request request) {
    super(request);
}

public void addPreviosPage(BasePage basePage) {
    logger.info(basePage.getClass().toString());
    previosPage.push(basePage);
}

public BasePage getPreviousPage() {
    BasePage basePage = previosPage.pop();
    logger.info(basePage.getClass().toString());

    return basePage;
}
}

and when page are render store actual page to this stack

share|improve this question
Browser navigation is not working as it should for you ? If it works as expected, a JavaScript call is fine in my opinion. – Cedric Gatay Dec 15 '12 at 8:10
WebSession has limitation set on size, saving to many pages will lead to session invalidation. ci.apache.org/projects/wicket/apidocs/6.0.x/org/apache/wicket/… – divanov Dec 15 '12 at 19:41
You can also send the previous page as a constructor parameter and use the setResponsePage(previousPage) method – user1266343 Jan 23 at 11:24

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.