Henning Noeth created TOBAGO-1982:
-------------------------------------
Summary: Custom components in segment layout not rendered correctly
Key: TOBAGO-1982
URL: https://issues.apache.org/jira/browse/TOBAGO-1982
Project: MyFaces Tobago
Issue Type: Bug
Components: Core
Affects Versions: 4.3.2
Reporter: Henning Noeth
Custom components like:
{code:xml}
<cc:implementation>
<tc:out value="output one" rendered="#{isRendered}" />
<tc:out value="output two" rendered="#{!isRendered}" />
</cc:implementation>{code}
are not rendered correctly in a tc:segmentLayout. If 'isRendered' is 'true',
nothing is shown, if 'isRendered' is 'false', output two is rendered correctly.
As a workaround use:
{code:xml}
<cc:implementation>
<tc:panel>
<tc:out value="output one" rendered="#{isRendered}" />
<tc:out value="output two" rendered="#{!isRendered}" />
</tc:panel>
</cc:implementation>{code}
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)