Here is the example by which you can retrieve URL of portlet which is reside on another Page.
Let say if you have Portlet A on page A and there is one more portlet called Portlet B on some other page that you dont know
Option 1
Option 2
Let say if you have Portlet A on page A and there is one more portlet called Portlet B on some other page that you dont know
Option 1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
HttpServletRequest httpRequest = PortalUtil.getHttpServletRequest(portletRequest); | |
httpRequest = PortalUtil.getOriginalServletRequest(httpRequest) | |
//Retrieve layout id of another portlet | |
long plid = PortalUtil.getPlidFromPortletId(themeDisplay.getScopeGroupId(), portletID); | |
PortletURL portletURL = PortletURLFactoryUtil.create(httpRequest ,portletId, plid ,PortletRequest.RENDER_PHASE); |
Option 2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Layout dashboardLayout = LayoutLocalServiceUtil.getFriendlyURLLayout(themeDisplay.getScopeGroupId(), | |
isPrivateURL, "/dashboard"); // Pass friendly URL for page to get layout object | |
if (dashboardLayout != null) | |
{ | |
LiferayPortletURL portletURL = PortletURLFactoryUtil.create(PortalUtil | |
.getHttpServletRequest(renderRequest), test_WAR_portlet, | |
dashboardLayout.getPlid(), PortletRequest.RENDER_PHASE); | |
portletURL.setWindowState(LiferayWindowState.NORMAL); | |
portletURL.setPortletMode(PortletMode.VIEW); | |
portletURL.setParameter("redirect", themeDisplay.getURLCurrent()); //Set any additional parameter if you want. | |
url = portletURL.toString(); | |
} |
Thank you for posting: it saves me a lot of time! ;)
ReplyDeleteGlad that it helped you .. !!
Delete