JSTL implementation of a resource provider and locale resolver. It will make the
titleKey
attribute of column tag works the same as fmt:message's
key property
. This tag must be the descendant of a
fmt:bundle
tag in order to use the titleKey. This is just a shortcut, which makes
<display:column titleKey="bar"/>
behave the same as
<c:set var="foo"> <fmt:message key="bar"/> </c:set> <display:column title="${foo}"/>
If you don't define either
titleKey
or
titleKey
property on your column, first the tag will attempt to look up the
property
property in your ResourceBundle. Failing that, it will fall back to the parent class's behavior of just using the property name.
@author Fabrizio Giustina
@version $Revision: 1194 $ ($Author: fgiust $)