Re: Tapestry principles/tips learned during training session

2011-08-08 Thread Michael Gentry
Hi Howard, As an example, in one application we had URLs from an application outside of Tapestry that included parameters (like state=WA) in the URL that we'd pick off in onActivate to start the Tapestry application with certain defaults preset for that request. mrg On Mon, Aug 8, 2011 at 12:57

Re: Tapestry principles/tips learned during training session

2011-08-08 Thread Howard Lewis Ship
True, but that will only work on simple pages (that have no callbacks to themselves, such as ActionLinks or Forms) ... unless you use the activate event to store page stage into the session, which kind of undermines the whole point of activate/passivate. But I could be wrong ... tell us about your

Re: Tapestry principles/tips learned during training session

2011-08-08 Thread Michael Gentry
Hi Les, Thanks for sharing! One comment, though, is you actually can have onActivate without onPassivate. I've done this many times. Thanks, mrg On Sat, Aug 6, 2011 at 2:54 PM, robert baker wrote: > Hi, > > I've been in Tapestry training for the past week, have really enjoyed > it, and pick