Session Undo

2009-05-12 Thread John Hendrikx
I've been trying to find some information on Wicket's session handling. From what I understand, Wicket solves the back button problem (and it does so perfectly), but there are times when certain pages are simply no longer correct. Wicket is supposed to detect this, but I have a hard time

Re: Session Undo

2009-05-12 Thread Igor Vaynberg
it really depends on what you want to happen. the easiest thing is to evict the page from the pagemap when the user is done with it - that way when the user attempts to submit the form they will get a page-expired error. to remove the page simply getpagemap().removepage(this); with a bit more

Re: Session Undo

2009-05-12 Thread Carlo Camerino
hi, was just wondering if this is possible if i'm using the current page as a reference to the previous page for the next screen. if i do this will i have errors? thanks On Wed, May 13, 2009 at 12:46 AM, Igor Vaynberg igor.vaynb...@gmail.com wrote: it really depends on what you want to