Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Invalid
-
1.0.10-core
-
None
-
None
-
Facelets 1.1.14, Trinidad 1.0.10, Orchestra 1.3
Description
I found, that c:forEach tag from JSTL dos not work within some Trinidad components. In code above, no items are listed using c:forEach tag in tr:table component:
<tr:table rowBandingInterval="1" value="#
{oxViewController.model}" var="app" width="100%">
<tr:column headerText="Code" sortable="true" sortProperty="code" width="35%">
<tr:outputText value="#
"/>
</tr:column>
<tr:column headerText="Name" sortable="true" sortProperty="name">
<tr:outputText value="#
"/>
</tr:column>
<f:facet name="detailStamp">
<tr:panelList>
<c:forEach items="#
" var="property">
<tr:outputText value="#
" shortDesc="#
{property.description}"/>
<tr:outputText value=" [required]" inlineStyle="color:red" rendered="#
"/>
</c:forEach>
</tr:panelList>
</f:facet>
</tr:table>