Re: @Persist problem in MyBasepage

2007-01-18 Thread jiju
yes, that is working am getting the value of usercontext in Derivedclass but if i am setting usercontext [setUserContext(new usercontext());] in pageAttached() event the usercontext is null in the next request onwords Stephane Decleire wrote: > > Hi, > > Yes, your persistent properties wi

Re: Re: Re: @Persist problem in MyBasepage

2007-01-18 Thread Tapestry User List
i meant: public void pageBeginRender(PageEvent event) { super.pageBeginRender(event); } 2007/1/18, Tapestry User List <[EMAIL PROTECTED]>: and if you add this method in your subclass : public void pageValidate(PageEvent event) { super.pageValidate(event); } I thin

Re: Re: @Persist problem in MyBasepage

2007-01-18 Thread Tapestry User List
and if you add this method in your subclass : public void pageValidate(PageEvent event) { super.pageValidate(event); } I think that should work. All the best, D. 2007/1/18, Stephane Decleire <[EMAIL PROTECTED]>: Hi, Yes, your persistent properties will be available in all your

Re: @Persist problem in MyBasepage

2007-01-18 Thread Stephane Decleire
Hi, Yes, your persistent properties will be available in all your subclasses. You could also init your persistent property with an @InitialValue annotation. -- Stéphane Decleire jiju a écrit : Hi All, I have one persistat property in my basepage , i am extending this basepage to specificPa