You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by "Geoff Callender (Updated) (JIRA)" <ji...@apache.org> on 2012/04/15 15:41:19 UTC

[jira] [Updated] (TAP5-812) The input validation documentation incorrectly shows validation occuring in the success event handler method

     [ https://issues.apache.org/jira/browse/TAP5-812?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Geoff Callender updated TAP5-812:
---------------------------------

    Affects Version/s: 5.3.2
    
> The input validation documentation incorrectly shows validation occuring in the success event handler method
> ------------------------------------------------------------------------------------------------------------
>
>                 Key: TAP5-812
>                 URL: https://issues.apache.org/jira/browse/TAP5-812
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: documentation
>    Affects Versions: 5.3.2, 5.1.0.5
>            Reporter: Geoff Callender
>            Assignee: Howard M. Lewis Ship
>             Fix For: 5.2.0
>
>
> 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))
>         {
>             form.recordError(passwordField, "Invalid user name or password.");
>             return null;
>         }
>         return "PostLogin";
>     }
> ...it should be...
>    String onValidateForm()
>    {
>        if (!authenticator.isValid(userName, password))
>        {
>            form.recordError(passwordField, "Invalid user name or password.");
>        }
>    }
>    String onSuccess()
>    {
>        return "PostLogin";
>    }

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira