• 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:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

Websphere Portal navigation

 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello! How can I implement navigation from one portal page to another in my jsf portlet?
 
Greenhorn
Posts: 7
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by timur diarov:
Hello! How can I implement navigation from one portal page to another in my jsf portlet?



I don't know what's your mean..
Just navigation? maybe we can use URL Mapping with link to another page.
 
Ranch Hand
Posts: 66
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
For Portal, there will be a URL defined for a page. A page will contain the portlets placed in them.

The way to access a page is to give the URL. But if you want to move from one JSF page to another JSF page, use JSF navigation as normal.
 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
u can use URL generation tag given below which calls the portal pages directly and in turn loads the portlets in it.

Tag syntax

<wps:urlGeneration
contentNode="<%=destinationPage%>" portletWindowState="Normal">
<wps:urlParam name="reset" value="Y" />
<a
href="<% wpsURL.write(out); %>" ><fmt:message
key="label" /></a>
</wps:urlGeneration>


[ July 31, 2008: Message edited by: Naveen Sundaram ]
 
reply
    Bookmark Topic Watch Topic
  • New Topic