You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tapestry.apache.org by "Dustin Woods (JIRA)" <ji...@apache.org> on 2010/04/30 00:25:54 UTC

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

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
            Priority: Trivial


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.


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

Posted by "Howard M. Lewis Ship (JIRA)" <ji...@apache.org>.
     [ 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.


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

Posted by "Howard M. Lewis Ship (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-1124?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Howard M. Lewis Ship closed TAP5-1124.
--------------------------------------

    Fix Version/s: 5.2.0
       Resolution: Fixed

> 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
>             Fix For: 5.2.0
>
>         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.


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

Posted by "Dustin Woods (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-1124?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dustin Woods updated TAP5-1124:
-------------------------------

    Attachment: TAP5-1124.patch

Patch attached

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


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

Posted by "Howard M. Lewis Ship (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-1124?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Howard M. Lewis Ship closed TAP5-1124.
--------------------------------------

    Fix Version/s: 5.2.0
       Resolution: Fixed

> 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
>             Fix For: 5.2.0
>
>         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.


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

Posted by "Howard M. Lewis Ship (JIRA)" <ji...@apache.org>.
     [ 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.


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

Posted by "Dustin Woods (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/TAP5-1124?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dustin Woods updated TAP5-1124:
-------------------------------

    Attachment: TAP5-1124.patch

Patch attached

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