2008/6/27 xbranko <[EMAIL PROTECTED]>:
> <tiles:importAttribute name="menu.Attributes"/>
Rick is correct, there is a problem with dots in "menu.Attributes",
because, without the "toName" attribute, it will be imported in the
"menu.Attributes" name under page scope.
So, either use a "toName" attribute, e.g.:
<tiles:importAttribute name="menu.Attributes" toName="menuAttributes"/>
<c:forEach var="item" items="${menuAttributes}">
...
Or change its use in <c:forEach>, e.g.:
<c:forEach var="item" items="${pageScope['menu.Attributes']}">
HTH
Antonio