Vjeran Marcinko <vjeran.marcinko <at> email.t-com.hr> writes:

> 
> Hi there.
> 
> Can someone provide me with currently available client persistence scopes, 
> and their short explanation?
> Tapestry 4.0 documentation has explicit mark that it's missing, so ...

a) @Persist("client") 
b) @Persist("client:page") 
c) @Persist("client:app") 

a) is the same as b). If you use b) for a property x for page Foo, then
you can get back the property only if the navigation is Foo => Foo. If the
navigation is Foo => Bar => Foo, then it will be lost when Bar is 
invoked. In contrast, if you use c), then it will be maintained all
the way.

--
Author of a book for learning Tapestry (http://www.agileskills2.org/EWDT)


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to