I would like to be able to conditionally omit a footer from a PrimeFaces panel element:

<p:panel header="some text">
    <f:facet name="footer">
        #{message}
    </f:facet>
    <!-- ... -->
</p:panel>

I hoped that the rendered attribute would work:

<p:panel header="some text">
    <f:facet name="footer" rendered="#{!empty message}">
        #{message}
    </f:facet>
    <!-- ... -->
</p:panel>

But the footer is still rendered, with empty content. It appears that facet does not have the rendered attribute: http://www.jsftoolbox.com/documentation/help/12-TagReference/core/f_facet.html.

What's the right way to do this?

link|improve this question

2  
I did some tests: a footer without any content (whitespace allowed) won't be rendered. A footer with any content, even though it's a simple EL which returns null/empty, then it renders the footer anyway. I am not sure which behaviour is desired, might be worth a report at PF issue tracker: code.google.com/p/primefaces/issues – BalusC Dec 6 '10 at 20:02
@BalusC: looks like it's bug report time. – Matt Ball Dec 6 '10 at 20:11
feedback

5 Answers

up vote 5 down vote accepted

I was able to solve this by swapping the facet out for an attribute. To summarize:

This works

<p:panel ...>
    <f:attribute name="footer" value="#{message}"/>
    <!-- ... -->
</p:panel>

But this doesn't work

<p:panel footer="#{message}">
    <!-- ... -->
</p:panel>

Neither does this

<p:panel ...>
    <f:facet name="footer">#{message}</f:facet>
    <!-- ... -->
</p:panel>

Nor this

<p:panel ...>
    <f:facet name="footer">
        <h:outputText value="#{message}" rendered="#{!empty message}"/>
    </f:facet>
    <!-- ... -->
</p:panel>

by "works" I mean:

"renders no footer — not just an empty footer — when #{message} is empty or null; otherwise, correctly renders the footer with the specified text."


PrimeFaces forum thread on this issue

link|improve this answer
Oh, interesting one. How did you find it out? Lucky accident? Digged the renderer source? – BalusC Dec 6 '10 at 21:41
1  
@BalusC: trial and error - so, sure, lucky accident :) having been learning JSF et al for <3 weeks (PrimeFaces for <1 week) I don't think I'm quite up to digging through the source code yet. – Matt Ball Dec 6 '10 at 21:42
2  
Ignorance is sometimes a bliss. Turns out that facets are actually stored as attributes (with the advantage that you can declare UI components in it). Good to know. – BalusC Dec 6 '10 at 21:47
@BalusC: you're saying that facets are just attributes that can contain other JSF tags? That would make sense. Is that a PrimeFaces thing, or a JSF-wide fact? – Matt Ball Dec 6 '10 at 21:54
Facets have been in JSF since the beginning. E.g. <h:dataTable><f:facet name="footer"> for a <tfoot>. But they are not stored as attributes in standard JSF impl. I'm not sure how PrimeFaces does it, for that I would need to dig its source. – BalusC Dec 6 '10 at 22:01
feedback

Here's what I did in trying to conditionally render a facet within a composite component.

<composite:interface>
    <composite:facet name="header" required="false" />
</composite:interface>
<composite:implementation>
    <p:panel>
        <c:if test="#{empty component.facets.header}" >
            <f:facet id="#{cc.attrs.id}_default_header" name="header">
            all sorts of stuff here
            </f:facet>
        </c:if>
        <c:if test="#{not empty component.facets.header}">
            <composite:insertFacet id="#{cc.attrs.id}_custom_header" name="header" />
        </c:if>
        <composite:insertChildren id="#{cc.attrs.id}_content"/>
    </p:panel>
</composite:implementation>

This let's the user of the composite component supply the header facet if they want, and if they don't, we supply a default. Obviously, instead of providing a default, you could simply not do anything.

This mixes c:if in jsf controls, but we didn't see any adverse effects.

link|improve this answer
2  
interesting. I thought of that, but since I don't have an environment to test it, I was afraid that mixing c:if there would not behave as expected. Let's see if it works for the case of the OP. :) – Bozho Dec 6 '10 at 19:59
This did not work for me. @Bozho: see previous sentence. I think the problem is as @BalusC described in his comment on my question, above. – Matt Ball Dec 6 '10 at 20:10
Curious what you mean by "did not work for me" since we have had this code running in production for months. – digitaljoel Dec 6 '10 at 20:20
What I mean is: <c:if test="#{!empty message}"><f:facet name="footer">#{message}</f:facet></c:if> did not omit the footer when #{message} is empty. I'm not writing a composite component, so that might be part of the problem. – Matt Ball Dec 6 '10 at 20:24
3  
It's indeed only useful in composite components or tag files since they are basically instantiated/executed once per declared tag everytime. However, in a normal view you're dependent on more factors: JSTL for example won't behave as expected when the EL is depending on some JSF UIData/repeated variable since this information isn't available during view build time. – BalusC Dec 6 '10 at 21:18
show 3 more comments
feedback

I have come across a similar issue with plain JSF. I am not sure how a <p:panel> is rendered, but if it is rendered as a table, you can try this:

First, declare a CSS-class like this:

.HideFooter tfoot {
    display: none;
}

Then set that class conditionally on the panel:

<p:panel styleClass="#{renderFooterCondition ? null : 'HideFooter'}">

The footer is still rendered in the JSF-sense, but it is not displayed and does not take up any space in the page when viewed by the user-agent.

link|improve this answer
feedback

You could declare a ui:param and let the template check the param while renderring.

The facet in the template could then be declared as:

<f:facet name="#{hideFooter == null or not hideFooter ? 'footer' : ''}">
     #{message}
</f:facet>

Any page can then declare this param

<ui:param name='hideFooter' value='#{some rule}' />

and set the appropriate rule for the param. For any page that does not declare the param, the footer will be displayed.

link|improve this answer
feedback

Why don't you enclose the content of the footer into a panelGroup which has the rendered attribute?

This way:

<p:panel header="some text">
    <f:facet name="footer">
    <h:panelGroup rendered="#{!empty message}">
        #{message}
    </h:panelGroup>
    </f:facet>
    <!-- ... -->
</p:panel>

I do it in my weapp and it works, no footer is rendered.

I don't use primefaces though, I do it with h:datatable, but I think that it must works with p:panel too.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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