Unusable FieldLabel in combination with a group of radio options
----------------------------------------------------------------
Key: TAPESTRY-1529
URL: https://issues.apache.org/jira/browse/TAPESTRY-1529
Project: Tapestry
Issue Type: Bug
Components: Framework
Affects Versions: 4.1.2
Environment: Windows XP, Sun JRE 1.5, JBoss 4.0.4
Reporter: Andrej Aschenbrenner
The FieldLabel component requires for the parameter "field" a component of the
type "IFormComponent".
I want the labels to be generated for every radio button entry:
O <label for="entry1">1st entry</label>
O <label for="entry2">2nd entry</label>
O <label for="entry3">3rd entry</label>
So the user can click on the entry label to select the desired option.
<span jwcid="[EMAIL PROTECTED]">
<span jwcid="@For" source="prop:source" volatile="true"
value="ognl:staticSelection">
<input jwcid="[EMAIL PROTECTED]" value="ognl:staticSelectionValue"
type="radio" class="radio" />
<label jwcid="@FieldLabel" prerender="false" field="component:radio"
displayName="prop:staticSelectionLabel"
class="clickable">Static Label</label>
</span>
</span>
But the component "Radio" is of type "AbstractComponent" and therefore can't be
assigned to the "field" parameter.
I think the type of the "Radio" component should be changed to
AbstractFormComponent because it IS a form component
in any case.
P.S.: If I assign field="component:group" then there is no effect because I get
O <label for="group">1st entry</label>
O <label for="group">2nd entry</label>
O <label for="group">3rd entry</label>
which is useless.
Thank you!
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]