Re: Problem with client side persistence

2005-08-02 Thread Adam Greene
reene" <[EMAIL PROTECTED]> To: "Tapestry users" Sent: Wednesday, August 03, 2005 12:04 AM Subject: Problem with client side persistence I have this piece of code: @Persist(value="client") public abstract int getClientValue(); public abstract void setClientValue(in

Re: Problem with client side persistence

2005-08-02 Thread Adam Greene
TED]> To: "Tapestry users" Sent: Wednesday, August 03, 2005 12:04 AM Subject: Problem with client side persistence I have this piece of code: @Persist(value="client") public abstract int getClientValue(); public abstract void setClientValue(int what); public void doAdd() {

Re: Problem with client side persistence

2005-08-02 Thread Adam Greene
Tapestry users" Sent: Wednesday, August 03, 2005 12:04 AM Subject: Problem with client side persistence I have this piece of code: @Persist(value="client") public abstract int getClientValue(); public abstract void setClientValue(int what); public void doAdd() { int value = getClie

Problem with client side persistence

2005-08-02 Thread Adam Greene
I have this piece of code: @Persist(value="client") public abstract int getClientValue(); public abstract void setClientValue(int what); public void doAdd() { int value = getClientValue() + 1; setClientValue(value); } and a DirectLink on the page that calls doAdd(), the problem is that