Pete,
Thanks, your input was good and I made of it.
I took your last snippet and applied it
@Persist
@InitialValue("true")
public abstract boolean isRememberMe();
@InjectComponent("rememberMe")
public abstract Checkbox getRememberMeComponent();
Makes fo
rom: "Ken nashua" <[EMAIL PROTECTED]>
Reply-To: "Tapestry users"
To: users@tapestry.apache.org
Subject: RE: CheckBox Implementation ... Tap-4.1.1 help please (thanks)
Date: Wed, 18 Oct 2006 16:30:45 -0400
Pete,
Your solution does not accomodate initialization/update to the ch
Pete,
Your solution does not accomodate initialization/update to the checkbox
component. It is a one-way usage.
I need to set the checkbox on when I encounter a cookie.
Can you offer a solution for seamless update?
Ken
_
Use yo
Pete,
Your solution does not accomodate initialization/update to the checkbox
component. It is a one-way usage.
I need to set the checkbox on when I encounter a cookie.
Can you offer a solution for seamless update?
Ken
_
Stay i
Well I got it to work.
public abstract boolean isRememberMe();
was all that was needed in the java.
@InjectComponent really did not help
@Component just collides with the html defiinition I originally provided and
creates an accessor nightmare that is unpredictable.
I am hoping 5.0
;Ken nashua" <[EMAIL PROTECTED]>
Reply-To: "Tapestry users"
To: users@tapestry.apache.org
Subject: CheckBox Implementation ... Tap-4.1.1 help please (thanks)
Date: Wed, 18 Oct 2006 14:10:25 -0400
Guys,
Ok, I am going to try the @Checkbox component inside some html
Typical us
Guys,
Ok, I am going to try the @Checkbox component inside some html
Typical usage follows...
Now I do not want to operate any *.Page files (although an alternative
sample would be nice to refer to)
I want to do everything in JAVA... period
1. Can someone pr