You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by "Howard M. Lewis Ship (JIRA)" <ji...@apache.org> on 2010/05/07 02:17:48 UTC

[jira] Assigned: (TAP5-1124) FormEventManager.setSubmittingElement(element) creates input element with type="input"

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

Howard M. Lewis Ship reassigned TAP5-1124:
------------------------------------------

    Assignee: Howard M. Lewis Ship

> FormEventManager.setSubmittingElement(element) creates input element with type="input"
> --------------------------------------------------------------------------------------
>
>                 Key: TAP5-1124
>                 URL: https://issues.apache.org/jira/browse/TAP5-1124
>             Project: Tapestry 5
>          Issue Type: Bug
>          Components: tapestry-core
>    Affects Versions: 5.2.0
>            Reporter: Dustin Woods
>            Assignee: Howard M. Lewis Ship
>            Priority: Trivial
>         Attachments: TAP5-1124.patch
>
>
> In cases where a form exists but the Form component is not used a visible text box appears after submitting the form.
> I think the code below:
> this.submitHidden = new Element("input", {
>   type : "input",
>   name : "t:submit"
> });
> should be changed to:
> this.submitHidden = new Element("input", {
>   type: "hidden",
>   name : "t:submit"
> });
> Thanks

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