You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@click.apache.org by "Bob Schellink (JIRA)" <ji...@apache.org> on 2010/03/06 02:19:27 UTC

[jira] Updated: (CLK-638) Support Dynamic Forms

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

Bob Schellink updated CLK-638:
------------------------------

    Affects Version/s: 2.1.0
        Fix Version/s: 2.2.0

> Support Dynamic Forms
> ---------------------
>
>                 Key: CLK-638
>                 URL: https://issues.apache.org/jira/browse/CLK-638
>             Project: Click
>          Issue Type: New Feature
>          Components: core
>    Affects Versions: 2.1.0
>            Reporter: Bob Schellink
>            Assignee: Bob Schellink
>             Fix For: 2.2.0
>
>
> One area where Click can improve is supporting dynamic forms. Typical example is registering JavaScript events on Fields to submit the Form and then add more Fields as the user navigates the Form.
> Couple of reasons make this problematic. Form automatically validates its fields. One can switch off this validation but need to keep in mind to switch validation back on for non JS submissions.
> The other area which is tricky is that all dynamic fields must be added in the Page onInit event in order to be processed properly. One can invoke field.bindRequestValue to query the field's value, but bindRequestValue doesn't properly check whether or not its parent Form was submitted.
> I propose we add a couple of helper methods to Form and Field to make this process smoother eg:
> void field.bind();
> boolean field.bindAndValidate(); <- will return true if the field is valid, false otherwise
> form.bindFields();
> boolean form.bindAndValidateFields(); <- will return true if *all* fields are valid, false otherwise

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.