I have a tiles definition like
<definition name="tasks" template="/jsp/layout/layout.jsp">
<put-attribute name="header" value="/jsp/layout/header.jsp"/>
<put-attribute name="nav" value="/jsp/layout/navigation.jsp"/>
<put-attribute name="menu" value="/jsp/task/menu.jsp#ShowUser" />
</definition>
I want to add a anchor in the value for an attribute and this anchor needs to be set based on the attribute set the controller. For eg
<put-attribute name="menu" value="/jsp/task/menu.jsp#ShowUser" />
However this does not seem to work.
Any idea how this can be done?