Re: ActionLink event handlers in Parent Page causing errors in Child

2015-05-08 Thread Dmitry Gusev
Hi, just a guess: maybe it'll work if you declare parentAction as @Property in ParentPage? Like: @Property @InjectComponent private ActionLink parentAction; On Fri, May 8, 2015 at 1:35 PM, Casey Link wrote: > I'm upgrading a very old tapestry 5.0 project to 5.3 > > One very common convention i

Re: ActionLink event handlers in Parent Page causing errors in Child

2015-05-08 Thread Lance Java
Tapestry validates all onXFromY() handlers to ensure that all Y's actually exist. In your case, it looks like Y does not exist in the child page since a different tml page is used. I can only assume this validation was introduced after 5.0. I consider actionlink to be deprecated, you should use ev