Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have my Primefaces lightBox set up like this:

<p:lightBox>
<h:outputLink value='#'>
KLICK
<h:outputLink>

<f:facet name="inline">

TWO ELEMENTS SHOULD GO HERE

</f:facet>
</p:lightBox>

I tried but even if both panel have the attribute "rendered='true'" only the latter one shows up.

share|improve this question
something similar happened with <f:facet name="header"/> while I was using p:dialog. Are you explicitly setting the rendered="true" for both methods or you are getting that value from a backing bean method? – akoskm Oct 20 '12 at 20:30
I am getting the value from a bean method, but I also had the problem, when I explicitly set 'rendered="true"' for test purpose. BalusC's answer solved my problem. – Lester Oct 21 '12 at 6:51

1 Answer

up vote 2 down vote accepted

Facets can have only one child component. Wrap them in a <h:panelGroup>.

<f:facet name="inline">
    <h:panelGroup>
        <h:someComponent rendered="..." />
        <h:otherComponent rendered="..." />
    </h:panelGroup>
</f:facet>
share|improve this answer
Oh yeah! That's it. Thank you so much. :) – Lester Oct 21 '12 at 6:52
You're welcome. – BalusC Oct 21 '12 at 11:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.