On Thu, 02 Aug 2012 22:11:47 -0300, George Ludwig <georgelud...@gmail.com> wrote:

Thiago,

Hi!


The previouspage object is referenced when we execute the continue method,
which is what advances to the next iteration:

@InjectPage
private Refine refine;

Object onContinue() throws Exception {

   // do a bunch of business logic

   refine.setup(this);

   return refine;

}

Yep, what you're seeing is expected. The object is always the same because since Tapestry 5.2 there's a single instance of each page class. Instead of persisting the page instance, persist the data with one or more @Persist fields.

--
Thiago H. de Paula Figueiredo

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscr...@tapestry.apache.org
For additional commands, e-mail: users-h...@tapestry.apache.org

Reply via email to