On 5/11/10 5:59 AM, Steven Yang wrote:
try
<s:iterator value="breadcrumbs">
                        <li><a href="${top[1]}">${top[0]}</a></li>
                </s:iterator>

Except you're using EL here to access OGNL.  I'd suggest this is cleaner:

<s:iterator value="breadcrumbs">
<li><a href="<s:property value='%{top[1]}'/>"><s:property value="%{top[0]}"/></a></li>
</s:iterator>

-Dale

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org

Reply via email to