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:47:17 UTC

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

    [ https://issues.apache.org/jira/browse/TAP5-2220?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13818361#comment-13818361 ] 

Geoff Callender commented on TAP5-2220:
---------------------------------------

Just confirmed this issue does not affect T5.3.7.

The source of the error is client-side, because the value is already wrong when RadioGroup#processSubmission gets it from the request…

    String rawValue = request.getParameter(controlName);

…rawValue is correct if non-AJAX and is the first radio button value if AJAX.

> 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)