selectManyShuttle inside panelBox corrupts class attributes of panelBox cells
------------------------------------------------------------------------------
Key: TRINIDAD-1397
URL: https://issues.apache.org/jira/browse/TRINIDAD-1397
Project: MyFaces Trinidad
Issue Type: Bug
Components: Components
Affects Versions: 1.0.10-core
Environment: Java 1.5
MyFaces 1.2.6
Trinidad 1.2.10
Tomcat 6.0.18
Reporter: elmar kretzer
When a selectManyShuttle is rendered inside a panelBox, the panelBox content
cells got corrupted css class attributes
<?xml version="1.0" encoding="UTF-8" ?>
<jsp:root
xmlns:jsp="http://java.sun.com/JSP/Page"
version="2.0"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:tr="http://myfaces.apache.org/trinidad"
xmlns:trh="http://myfaces.apache.org/trinidad/html">
<jsp:directive.page contentType="text/html; charset=utf-8" />
<f:view>
<trh:html>
<trh:head title="test">
</trh:head>
<trh:body>
<tr:form>
<tr:panelBox>
<tr:selectOrderShuttle>
<f:selectItem
itemLabel="test"
itemValue="test" />
</tr:selectOrderShuttle>
</tr:panelBox>
</tr:form>
</trh:body>
</trh:html>
</f:view>
</jsp:root>
will lead to following html:
....
<td class="af_panelBox_start"></td>
<td class="af_panelBox_body">...........</td>
<td class="af_selectManyShuttle_box_end"></td>
....
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.