• 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

Seam - BreadCrumbs - Implementation

 
Ranch Hand
Posts: 558
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I just want to make use of "conversationStack" builtin component for BreadCrumbs implementation. But sooner came to know it is for "nested" conversation model alone.


3.7.5. Breadcrumbs
Breadcrumbs are useful in applications whic h use a nested conversation model. The breadcrumbs are a list of links to conversations in the current conversation stack



So I have two options in mind

1. Can we decorate our application structure like

Login to Logout one outer most conversation and all other conversations as children to it. Login - inner conversation 1 - inner conversation 2 - inner conversation n Logout

2. Or we need to manually take care of breadcrumbs if we are not using nested conversation?

3. Or Is there any smarter way to represent Menu selected and menu Item selected ?
currently what I am thinking is to go to each page and do following
${ menu1.message} - ${ menuItem1.message}

4. How did you implement breadcums in absense of nested conversation?
Please suggest.
 
reply
    Bookmark Topic Watch Topic
  • New Topic