On 11/22/05, Garner, Shawn <[EMAIL PROTECTED]> wrote:

> There are ways to put content into a tile but there isn't a way to remove a
> tile.
>
> Say we have a layout that has a menu by default then you extend that layout
> and you don't want a menu.

I have that exact situation where I don't want the menu showing up on
a resolution screen.  I'm doing it in tiles-defs.xml,  so this may not
apply, but it works:

<tiles-definitions>
  <definition name="masterPage" path="/WEB-INF/jsp/layout/basicLayout.jsp">
     <put name="title"       value="IRM Web" />
     <put name="menubar"     value="/WEB-INF/jsp/menubar.jsp" />
     <put name="footer"      value="/WEB-INF/jsp/footer.jsp" />
     ...
  </definition>

  <definition name="resolution.page" extends="masterPage">
    <put name="heading"     value="Resolution" />
    <put name="menubar"     value="" />
    <put name="body"        value="/WEB-INF/jsp/resolutionBody.jsp" />
  </definition>
...

--
Wendy

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

Reply via email to