RE: Tiles and changing the title based on content

2004-05-22 Thread Tim Penhey
That could work. BTW where is the advanced tiles PDF? The other possibility I suppose is to have the default layout use an include that specifies c:set var=titleKeytiles:getAsString name=titleKey//c:set titlebean:message key=${titleKey}//title and it could be overriden in an extended

RE: Tiles and changing the title based on content

2004-05-22 Thread David Friedman
Tim, The advanced tiles pdf is under the User and Developer Guides (http://jakarta.apache.org/struts/userGuide/index.html), Tiles Guide (http://jakarta.apache.org/struts/userGuide/dev_tiles.html), under the bottom-of-the-page link Tiles Advanced Features:

Tiles and changing the title based on content

2004-05-21 Thread Tim Penhey
I was wondering if there is any way to change the title based on the content of a tiles based page? I have a current JSP where the title is: title${item.name}/title Do people have any solutions to this? At the moment my layout has the following: c:set

Re: Tiles and changing the title based on content

2004-05-21 Thread Niall Pemberton
fmt:messagetiles:getAsString name=titleKey//fmt:message - Original Message - From: Tim Penhey [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Friday, May 21, 2004 4:59 PM Subject: Tiles and changing the title based on content I was wondering if there is any way

RE: Tiles and changing the title based on content

2004-05-21 Thread Tim Penhey
That requires a static titleKey in the tiles-def.xml, whereas I am dealing with a name property from a bean that comes from a database. Tim -Original Message- From: Niall Pemberton [mailto:[EMAIL PROTECTED] Sent: 21 May 2004 17:48 To: Struts Users Mailing List Subject: Re: Tiles and

RE: Tiles and changing the title based on content

2004-05-21 Thread Michael McGrady
I am not sure why this is a problem. All you have to do if you want part of the response object to be dynamic is put your dynamic value in the tile. Presumably you have some dynamic factor choosing the tiles content page. Just have that same factor decide what the value of the title is.

RE: Tiles and changing the title based on content

2004-05-21 Thread David Friedman
Tim, Why not use a TilesAction (org.apache.struts.tiles.action package) and change/set tiles attributes using the putAttribute() method of the ComponentContext object. For more details, see the advances tiles PDF. -David -Original Message- From: Michael McGrady [mailto:[EMAIL

RE: Tiles and changing the title based on content

2004-05-21 Thread Michael McGrady
I assume by the tile you mean the JSP page that is referenced in the tiles xml, if that is how you are doing it. If so, you just reference a bean property on the JSP page. Again, what is the problem. This is simple. I always do this without any difficulty. Here is something I have in one