You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by "Geoff Callender (JIRA)" <ji...@apache.org> on 2013/11/10 06:01:18 UTC

[jira] [Created] (TAP5-2220) RadioGroup goes wrong in AJAX submit: gets set to first value

Geoff Callender created TAP5-2220:
-------------------------------------

             Summary: RadioGroup goes wrong in AJAX submit: gets set to first value
                 Key: TAP5-2220
                 URL: https://issues.apache.org/jira/browse/TAP5-2220
             Project: Tapestry 5
          Issue Type: Bug
          Components: tapestry-core
    Affects Versions: 5.4
            Reporter: Geoff Callender
            Priority: Blocker


Using T5.4 alpha-23.

A non-AJAX submit of a RadioGroup works just fine…

        <t:form t:id="inputs">

            <t:RadioGroup t:id="radiooo" value="radioSelectedValue">
                <t:Radio t:id="radioH" value="literal:H" label="High" type="radio"/><t:label for="radioH"/><br/>
                <t:Radio t:id="radioM" value="literal:M" label="Medium" type="radio"/><t:label for="radioM"/><br/>
                <t:Radio t:id="radioL" value="literal:L" label="Low" type="radio"/><t:label for="radioL"/>
            </t:RadioGroup>
            
            <input type="submit" value="Submit"/>
        </t:form>

…but when you turn it into an AJAX submit, it always sets the RadioGroup value to the first Radio's value (which is "H" in this example)…

    <t:zone t:id="zzz">
        <t:form t:id="inputs" zone="^">

            <t:RadioGroup t:id="radiooo" value="radioSelectedValue">
                <t:Radio t:id="radioH" value="literal:H" label="High" type="radio"/><t:label for="radioH"/><br/>
                <t:Radio t:id="radioM" value="literal:M" label="Medium" type="radio"/><t:label for="radioM"/><br/>
                <t:Radio t:id="radioL" value="literal:L" label="Low" type="radio"/><t:label for="radioL"/>
            </t:RadioGroup>
            
            <input type="submit" value="Submit"/>
        </t:form>
    </t:zone>



--
This message was sent by Atlassian JIRA
(v6.1#6144)