@Component
private PageLink page
// id in template does not match field name
@Component(id="page")
private PageLink pageToEdit
g,
kris
"Thiago HP" <[EMAIL PROTECTED]>
06.12.2007 12:31
Bitte antworten an
"Tapestry users"
An
"Tapestry users"
private PageLink page
// id in template does not match field name
@Component(id="page")
private PageLink pageToEdit
g,
kris
"Thiago HP" <[EMAIL PROTECTED]>
06.12.2007 12:31
Bitte antworten an
"Tapestry users"
An
"Tapestry users"
Kopie
Th
Thanks a lot.
Thiago HP a écrit :
Try replacing
@Component(id="couleur1")
Couleur couleur1;
by
@Component(id="couleur1")
private Couleur couleur1;
AFAIK, @Component and @Inject only works in private fields.
Thiago
-
To unsub
Try replacing
@Component(id="couleur1")
Couleur couleur1;
by
@Component(id="couleur1")
private Couleur couleur1;
AFAIK, @Component and @Inject only works in private fields.
Thiago
-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For
Hi, I'm a newbie in tapestry
I have a component Drapeau that embed 3 others components of type Couleur
all the Couleur components in any phase of the Drapeau render process
appear to be null in my debugger.
Drapeau.html
==
http://tapestry.apache.org/schema/tapestry_5_0_0.xsd";>
This i