The control.infos accessor
infos
Answers a de.odysseus.calyxo.base.Messages instance containing info messages by delegating to the module's message support.
Example
The expression ${calyxo.control.infos.allMessages} evaluates to an iterator over the action info messages, that have been saved using the module's message support instance. Thus,
<ul>
<c:forEach var="message" items="${calyxo.control.infos.allMessages}">
<li>${calyxo.base.i18n.format[message]}</li>
</c:forEach>
</ul>
renders all infos into an unordered list.


