Re: Conditional formatting elements of a collection in c:forEach

Rashmi <[email protected]> Wed, 11 Feb 2009 16:59:55 -0500
Newsgroups gmane.comp.jakarta.taglibs.user
Message-ID <[email protected]>
The null value display problem is also sovled (after referring to the
JSTL 1.2 spec) :

                <fmt:message key="${formatKey}" bundle="${nameOrder}">
                    <fmt:param><c:out value="${person.firstName}"
default=""/></fmt:param>
                    <fmt:param><c:out value="${person.middleInitial}"
default=""/></fmt:param>
                    <fmt:param><c:out value="${person.lastName}"
default=""/></fmt:param>
                </fmt:message>

-Rashmi