• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Tiles

 
Greenhorn
Posts: 18
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have a definition in tiles-defs that I can use. The problem is that in one of the content pages (ultimately the actual page copy) I access a resource bundle to get the localised content.

My problem is that I want to pass the information from this TILE into the above template dynamically.

Does anyone have any suggestions?

Cheers

Andrew


<definition name=".layouts.global" page="/layouts/global/GlobalStandard.jsp">
<put name="Title" value="Professionals" />
<put name="Css" value="styles/GlobalDefault.css" />
<put name="GlobalBrandingBar" value=".layouts.tiles.TopMenuBar" />
<put name="GlobalTopNavigation" value="/Blank.jsp" />
<put name="Breadcrumbs" value="/Blank.jsp" />
<put name="Content" value="/ThePageWithTheBundle.jsp" />
</definition>

I want to pass something (a text value) from tile name 'Content' to the tile named Title...

Thanks again.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic