Been through the archive, and the logic-present.jsp in the sample
distributions but nothing has solved this yet.
I am simply adding an ArrayList of String to a request in my action. I've
added 3 Strings to oMessages:
request.setAttribute("messages",oMessages);
RELEVANT JSP :
<%@ taglib uri="/WEB-INF/tlds/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/tlds/struts-logic.tld" prefix="logic" %>
<logic:present name="messages">
<logic:iterate id="item" name="messages">
<li>Info: <bean:write name="item" /></li>
</logic:iterate>
</logic:present>
OUTPUT:
Info:
Info:
Info:
So it is iterating through the 3 items, but is writing nothing. What am I
missing??
Thanks
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>