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