submit component does not set id attribute to t:id value
--------------------------------------------------------

                 Key: TAP5-1181
                 URL: https://issues.apache.org/jira/browse/TAP5-1181
             Project: Tapestry 5
          Issue Type: Bug
          Components: tapestry-core
    Affects Versions: 5.1.0.5
            Reporter: Paul Stanton
            Priority: Minor


other form components (for example TextField) will set the value of the 'name' 
and 'id' attributes to the value of the 't:id' attribute, however the 'submit' 
component does not.

<input t:type="submit" t:id="mySubmit" value="submit" />

renders to:

<input value="submit" name="mySubmit" type="submit"></input>

expected:

<input value="submit" name="mySubmit" id="mySubmit" type="submit"></input>

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

Reply via email to