I am working on a JSR 286 portlet using JSF 1.2 on WebSphere Portal 7. I have been trying to find a way to do navigation between two portlets on the same page. Essentially:
- Click a button on Portlet A.
- Portlet B navigates to a different view (based on the information from Portlet A), while Portlet A stays on same view as before.
They are using the same source, so I thought I could accomplish this by using a PhaseListener and the portlet namespace ids -- I have somewhat got this to work, but I can't help but think there has to be a better way to do this.
Before I continue down this route, does anyone know of the proper way for me to do navigation between two portlets?