The TilesTool is used to interact with the Struts-Tiles framework that is part
of Struts 1.
Template example(s):
<!-- insert a tile -->
$tiles.myTileDefinition
<!-- get named attribute value from the current tiles-context -->
$tiles.getAttribute("myTileAttribute")
<!-- import all attributes of the current tiles-context into the velocity-context. -->
$tiles.importAttributes()
Toolbox configuration:
<tools>
<toolbox scope="request">
<tool class="org.apache.velocity.tools.struts.TilesTool"/>
</toolbox>
</tools>
The TilesTool is used to interact with the Struts-Tiles framework that is part of Struts 1.
Template example(s): <!-- insert a tile --> $tiles.myTileDefinition <!-- get named attribute value from the current tiles-context --> $tiles.getAttribute("myTileAttribute") <!-- import all attributes of the current tiles-context into the velocity-context. --> $tiles.importAttributes() Toolbox configuration: <tools> <toolbox scope="request"> <tool class="org.apache.velocity.tools.struts.TilesTool"/> </toolbox> </tools>This tool may only be used in the request scope.