You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@myfaces.apache.org by Garner Shawn <sh...@gmail.com> on 2006/03/07 06:32:56 UTC

t:panelNavigation

I have a panel navigation.

The structure of the links is
<t:panelNavigation id="panelNavigation1" ...>
<t:commandNavigation id="productLink2" action="products" value="Software
Products">
  <t:commandNavigation id="exampleProductLink2" action="exampleProduct"
value="Example Product">
    <t:commandNavigation id="exampleProductDownloadLink2"
action="exampleProductDownload" value="Download"/>
  </t:commandNavigation>
</t:commandNavigation>
</t:panelNavigation>

alright when you click on the products link you get a page where you can
view a little bit about "example product" and click on a details link that
takes you to the same place as the commandNavigation "example product"
however since you didn't use the panelNavigation to get there you don't see
"download" since it didn't expand.

How do I fix this so it displays the sub commandNavigation links for page
your on even if you don't use the panel navigation to get there?