You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by "Sinan Saral (JIRA)" <ji...@apache.org> on 2009/05/11 14:35:45 UTC

[jira] Created: (TAP5-690) Hidden component does not render an id attribute

Hidden component does not render an id attribute
------------------------------------------------

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


There seems to be no way to render an id attribute for the Hidden component. 
(org.apache.tapestry5.corelib.components.Hidden)

<t:hidden t:id="country" />
results in:
<input name="country" type="hidden"></input>

And also 
<t:hidden t:id="country" id="country"/>
results in:
<input name="country" type="hidden"></input>

required result is:
<input name="country" id="country" type="hidden"></input>

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