[
http://jira.jboss.com/jira/browse/RF-3104?page=all ]
Vladislav Baranov resolved RF-3104.
-----------------------------------
Resolution: Rejected
Assignee: Mikhail Vitenkov (was: Vladislav Baranov)
Try to use on the same page the element:
<h:outputText dir="RTL" value="facet(footer)"/>
and you will see the same behaviour.
dataTable: dir="RTL" leads to changing outputText in
"header" & "footer" facets of rich:subTable inside
rich:dataTable.
------------------------------------------------------------------------------------------------------------------------
Key: RF-3104
URL:
http://jira.jboss.com/jira/browse/RF-3104
Project: RichFaces
Issue Type: Bug
Affects Versions: 3.2.1
Environment: IE6,IE7,FF,Safari,Opera(3.1.5.CR2)
Reporter: Mikhail Vitenkov
Assigned To: Mikhail Vitenkov
Fix For: 3.2.1
Attachments: dataTableRTLFacet.png
Step 1. Add h:outputText inside dataTable's rich:subTable "header" facet.
Use code like this:
<rich:dataTable id="dataTableID"...>
<f:facet name="caption">
<h:outputText value="caption facet" />
</f:facet>
<f:facet name="header">...
<rich:subTable id="detail" var="detail"
value="#{dataTableID.detail}">
<f:facet name="header">
<h:outputText value="facet(header)" />
</f:facet>
<f:facet name="footer">
<h:outputText value="facet(footer)" />
</f:facet>
<rich:column id="name">
<h:outputText value="#{detail.name}" />
</rich:column>
<rich:column id="qty" rendered="#{dataTable.r2rendered}">
<h:outputText value="#{detail.qty}" />
</rich:column>
</rich:subTable>
</rich:dataTable>
Step 2. Navigate to page contained tested component.
Step 3. Verify "header" & "footer" fasets' content
displaying.
Actual behavior:
"(facet(header" & "(facet(footer" display instead of
"facet(header)" & "facet(footer)" accordingly. For more
information see attached dataTableRTLFacet.png
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
http://www.atlassian.com/software/jira