Rick Reumann wrote:

mainLayout...
----------

<tiles:insert attribute="header">
<tiles:put name="links" content="page_links"/> ??? I'm probably doing this wrong
</tiles:insert>


I needed to do it this way and it works!:

<tiles:insert attribute="header">
        <tiles:put name="links" beanName="page_links" beanScope="tile"/>
</tiles:insert>

After I do that, my header.jsp that is included as a tile in my mainLayout can just do:

<tiles:insert attribute="links"/>


(I must say the docs on this Tiles stuff are not that great.. fortunately I found Rick Hightower's PDF which seems to be helping a lot: http://www.arc-mind.com/downloads_protected/tutorials/struts/advanced-tiles.pdf )

--
Rick




---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to