I am wondering if it's possible to have an if/else with Apache Tiles 2 (or JSTL that references a Tiles attribute, that would work to). Basically, I want this:

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ taglib uri="http://tiles.apache.org/tags-tiles" prefix="tiles"%>
<div>
    <!-- Some stuff here -->
</div>
<tiles:if condition="showSecondDiv == 'true'">
    <div>
        <!-- Some second stuff here -->
    </div>
</tiles:if>

There is <put-attribute name="showSecondDiv" value="true" type="string" /> in the Tiles XML. The motivation is that I want to reuse this JSP in a number of places, some that want to show both divs, others that only want to show one.

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

USING JSTL
example:

     <c:if test="${!empty tilesAdditionalTitle}">
       <fmt:param value="${requestScope[tilesAdditionalTitle]}"  />
     </c:if>
link|improve this answer
Will that reference the attribute declared in my Tiles XML? – Nik Aug 11 '11 at 15:29
tilesAdditionalTitle this is the name of attribute – Nook Aug 11 '11 at 16:46
Ok, and what is the requestScope[] part? – Nik Aug 11 '11 at 16:49
the same name :) – Nook Aug 11 '11 at 17:01
feedback

Your Answer

 
or
required, but never shown

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