Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
5.3.2, 5.1.0.5
-
None
-
None
Description
The example in http://tapestry.apache.org/tapestry5/guide/validation.html has to be fixed as a consequence of TAPESTRY-1972 .
Instead of this...
String onSuccess()
{
if (!authenticator.isValid(userName, password))
return "PostLogin";
}
...it should be...
String onValidateForm()
{
if (!authenticator.isValid(userName, password))
}
String onSuccess()
{ return "PostLogin"; }Attachments
Issue Links
- relates to
-
TAPESTRY-1972 Client persistence bug - user typing lost
-
- Closed
-