Re: help constructing a page activation context

2013-05-21 Thread Dmitry Gusev
Hi Ken, On Tue, May 21, 2013 at 7:25 AM, Ken in Nashua kcola...@live.com wrote: tHANKS gEOFF... bUT it tell sme I have a serious problem onmy hands the output is not matching the input I dont know what to do Just make the output match the input: Here's your output:

RE: help constructing a page activation context

2013-05-21 Thread Ken in Nashua
Thanks Dimitri : ) I didnt think I physically had to make the match happen in code. I thought the formal parameter spec was optional. I will give that a shot. So it seems signature counts. Thanks a bunch !!!

RE: help constructing a page activation context

2013-05-20 Thread Ken in Nashua
I tried the context specified below but clazz during activation always comes in as null. is this a tapestry bug ? @OnEvent(EventConstants.ACTIVATE) Object onActivate(Class clazz) { if (clazz == null) return Utils.new404(messages); this.beanType = clazz;

RE: help constructing a page activation context

2013-05-20 Thread Ken in Nashua
This seems to help me stay on the same page... /* @OnEvent(EventConstants.ACTIVATE) Object onActivate(Class clazz) { if (clazz == null) return Utils.new404(messages); this.beanType = clazz; return null; } */ @OnEvent(EventConstants.PASSIVATE)

Re: help constructing a page activation context

2013-05-20 Thread Thiago H de Paula Figueiredo
On Mon, 20 May 2013 15:04:35 -0300, Ken in Nashua kcola...@live.com wrote: I tried the context specified below but clazz during activation always comes in as null. is this a tapestry bug ? No. If you wan to get the class as the first page activation context value, it should be the

Re: help constructing a page activation context

2013-05-20 Thread Ken in Nashua
Thanks Thiago... The usage of THIS... is because I am operating exclusively out of RosterQuery.JAVA and RosterQuery.tml This module renders ... = | criteria form GO | = | table| = I select my criteria and hit GO.

Re: help constructing a page activation context

2013-05-20 Thread Geoff Callender
The output of onPassivate becomes the input of onActivate. It goes out to the URL and in from the URL. They should match. http://jumpstart.doublenegative.com.au/jumpstart/examples/navigation/onactivateandonpassivate/3 Cheers, Geoff On 21/05/2013, at 4:04 AM, Ken in Nashua wrote: I tried the

RE: help constructing a page activation context

2013-05-20 Thread Ken in Nashua
tHANKS gEOFF... bUT it tell sme I have a serious problem onmy hands the output is not matching the input I dont know what to do I have seen this months ago tryign to create CRUD pages. Maybe it has to do with the routing features of tynamo? I dont know... Here is the routing feature