You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@struts.apache.org by john mattucci <jo...@sympatico.ca> on 2005/07/09 22:47:19 UTC

Tile question

I have the following in my tiles definition files

<definition name="main.Parent" path="/x/y.jsp" >
<put name="TopMenu" value="${TopMenu}" />
<put name="Footer" value="${Footer}" />
</definition>

I would like to use definitions as ActionForwards

<action
path="/test"
type="org.apache.struts...
<forward
name="success"
path=".main.Parent"/>
</action>

My question would it be possible to include values to passed to
${TopMenu} and ${Footer} in 
 
<forward
name="success"
path=".main.Parent"/> 
 
of the action?

Thank you all