h:selectOneRadio renders two closing tr tags per item
-----------------------------------------------------
Key: MYFACES-1046
URL: http://issues.apache.org/jira/browse/MYFACES-1046
Project: MyFaces
Type: Bug
Versions: 1.1.1
Reporter: Oliver Becker
Priority: Critical
The h:selectOneRadio tag with pageDirection layout will be rendered as an HTML
table having two closing tr tags per item.
This causes serious rendering problems in Firefox.
Example:
<h:selectOneRadio
layout="pageDirection"
value="1">
<f:selectItem
itemValue="1"
itemLabel="One" />
<f:selectItem
itemValue="2"
itemLabel="Two" />
</h:selectOneRadio>
Results in
<table> <tr><td><label><input type="radio" name="_id0"
checked="checked" value="1" /> One</label></td></tr></tr>
<tr><td><label><input type="radio" name="_id0" value="2"
/> Two</label></td></tr></tr></table>
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira