Am 18.12.2009 10:23, schrieb Alessandro Bottoni:

The Id Value is not passed from the first page to the second one (that
is: I always get the default string "Id from UserProfile" as the Id
rendered on the UserProfile page).

It is passed to the second page, but after that the page is being passivated. You need to implement onActive(String) and onPassivate(). Please have a look at page 66 of your book.

-----

void onActivate(String context) {
        this.UserId = context;
}

String onPassivate() {
        return this.UserId;
}

-----

HTH
 Stephan

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

Reply via email to