[
https://issues.jboss.org/browse/RF-12932?page=com.atlassian.jira.plugin.s...
]
Brian Leathem resolved RF-12932.
--------------------------------
Resolution: Duplicate Issue
This issue has been resolved in RichFaces 4.3.2.CR1.
<rich:tab> render-attribute does not work
-----------------------------------------
Key: RF-12932
URL:
https://issues.jboss.org/browse/RF-12932
Project: RichFaces
Issue Type: Bug
Security Level: Public(Everyone can see)
Affects Versions: 4.3.1
Reporter: Alexey Shakov
render attribute of rich:tab-Component is ignored.
In the following example, clicks on tab1 and tab2 do not re-render panelGroup with
id="x", but clicks on link1 and link2 do the job.
{code:xml}
<h:form>
<rich:tabPanel>
<rich:tab header="tab1" render="x">
<a4j:commandLink value="link1" render="x" />
</rich:tab>
<rich:tab header="tab2" render="x">
<a4j:commandLink value="link2" render="x" />
</rich:tab>
</rich:tabPanel>
<h:panelGroup id="x">
<h:outputText value="#{baseBean.currentDate}">
<f:convertDateTime pattern="dd-MM-yyyy HH:mm:ss" />
</h:outputText>
</h:panelGroup>
</h:form>
{code}
(This snippet works with RF 4.2.1.Final)
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see:
http://www.atlassian.com/software/jira