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.