Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a JSF template with the a title and a subtitle :

<h3><ui:insert name="title"/></h3>
<hr/>
<h5><ui:insert name="subtitle"/></h5>

All the pages using this template have title, but not always a subtitle :

<ui:define name="title">My Title with no subtitle</ui:define>

When there is no subtitle I don't want to have a <hr/> tag. So what I really want to do is check if subtitle is empty, if yes, ignore the block of code. Something like that :

<h3><ui:insert name="title"/></h3>
<c:if test="#{not empty subtitle}">
    <hr/>
    <h5><ui:insert name="subtitle"/></h5>
<c:if>

But of course <c:if test="#{not empty subtitle}"> doesn't work. I don't know how to access the value of the subtitle variable.

Any idea ?

Thanks

share|improve this question

1 Answer

up vote 5 down vote accepted

Closest what you can get is to define the subtitle as an <ui:param> instead.

Thus,

<ui:define name="title">My Title with a subtitle</ui:define>
<ui:param name="subtitle" value="A subtitle" />

with

<h3><ui:insert name="title"/></h3>
<ui:fragment rendered="#{not empty subtitle}">
    <hr/>
    <h5>#{subtitle}</h5>
</ui:fragment>
share|improve this answer
1  
Yes, it works, that's brillant thanks – agoncal Apr 13 '11 at 14:37
You're welcome. – BalusC Apr 13 '11 at 14:39

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.