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 Dmitry Gusev
Hi Ken, On Tue, May 21, 2013 at 7:25 AM, Ken in Nashua 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: @OnEvent(EventConstants.PA

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 @At("/{2

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 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. The

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 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 first value in the Lis

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 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;

help constructing a page activation context

2013-05-20 Thread Ken in Nashua
Hi Tapestry Pro's... Good morning.. I was wondering about my page. Here is the link to my page... its basically a prototype I will retrofit in later. http://localhost:8080/pphl/rosterquery My page renders and everything is good. I select my criteria and hit GO (submit). My tabel list gets p