Foros de discusión

Portlet Instance ID

Preben Ludviksen, modificado hace 16 años.

Portlet Instance ID

New Member Mensajes: 7 Fecha de incorporación: 7/11/07 Mensajes recientes
I'm making a portlet with some properties stored in a xml-file. I want to have unique settings for each instance of my portlet. Each instance obviously have an instance id, so I was just wondering how I can get this id in my code, as I need it to read/write the right properties?
thumbnail
Roman Hoyenko, modificado hace 16 años.

RE: Portlet Instance ID

Liferay Master Mensajes: 878 Fecha de incorporación: 8/10/07 Mensajes recientes
String portletId = portletDisplay.getId();
Lester Chua, modificado hace 15 años.

RE: Portlet Instance ID

New Member Mensajes: 4 Fecha de incorporación: 30/11/06 Mensajes recientes
Roman Hoyenko:
String portletId = portletDisplay.getId();


And may I know what is "portletDisplay"?
For all I know it can be a variable for any bean in the world with a getId() method.

Is there a more concrete answer?
thumbnail
François Cassin, modificado hace 15 años.

RE: Portlet Instance ID

New Member Mensajes: 8 Fecha de incorporación: 23/09/08 Mensajes recientes
Hi Lester,

Have you tried this :

ThemeDisplay themeDisplay = (ThemeDisplay)req.getAttribute(WebKeys.THEME_DISPLAY);
PortletDisplay portletDisplay = themeDisplay.getPortletDisplay();
String portletId = portletDisplay.getId();

Where req is a RenderRequest.

Hope this helps
thumbnail
Luc Pons, modificado hace 15 años.

RE: Portlet Instance ID

Junior Member Mensajes: 70 Fecha de incorporación: 3/12/08 Mensajes recientes
François Cassin:
Hi Lester,

Have you tried this :

ThemeDisplay themeDisplay = (ThemeDisplay)req.getAttribute(WebKeys.THEME_DISPLAY);
PortletDisplay portletDisplay = themeDisplay.getPortletDisplay();
String portletId = portletDisplay.getId();

Where req is a RenderRequest.

Hope this helps


Hi,

I'm not sure of they way you meant your code, but it seemed to me that it fit my requirements.
I'm trying to develop a portlet which would add another portlet on the layout. I want then to get it's instanceId

I'm doing ...




            //get the layout
            Layout layout = LayoutLocalServiceUtil.getLayout(11131);
            LayoutTypePortlet layoutTypePortlet = (LayoutTypePortlet) layout.getLayoutType();


            //Add the portlet
            ThemeDisplay themeDisplay = (ThemeDisplay) request.getAttribute(WebKeys.THEME_DISPLAY);
            layoutTypePortlet.addPortletId(themeDisplay.getUserId(), "9");

            //"save" the changes
            LayoutLocalServiceUtil.updateLayout(layout.getGroupId(),
                    layout.isPrivateLayout(), layout.getLayoutId(), layout.getTypeSettings());
[b] 
            //Your code
            PortletDisplay portletDisplay = themeDisplay.getPortletDisplay();
            String portletId = portletDisplay.getId();
            System.out.println("l'id trouvé est : " + portletId);
[/b]



In the end, the portledId is the empty string ""

From there, i have a question
If we add two portlets on the layout, how coul we get the instanceIds ? Or maybe the portletDisplay.getId() returns the id of the last instance?

:/

Thx
Luc
Bob Baird, modificado hace 13 años.

RE: Portlet Instance ID

New Member Mensajes: 2 Fecha de incorporación: 9/02/11 Mensajes recientes
Using Liferay 6.0, I am looking to retrieve the portlet instance id for an instanceable portlet. I know this thread is old, but thought I'd reply to it since I didn't find a direct answer to my question after checking several search results. I am trying to display the instance id in an event processing method (IPC) to verify which instance of the portlet is receiving a particular event. After several rounds in my eclipse debugger, the following code does the trick:

String s = (String) request.getAttribute("PORTLET_ID");

request is the EventRequest parameter from the @ProcessEvent method, but the same code works using the RenderRequest parameter in the doView method as well.

Resulting instance id is the fully qualified instance id (portletId from the portletpreferences table.
Example: catcherportlet_WAR_ipcbaseballcatcherportlet_INSTANCE_Zxu7

Thx
thumbnail
Jignesh Vachhani, modificado hace 13 años.

RE: Portlet Instance ID

Liferay Master Mensajes: 803 Fecha de incorporación: 10/03/08 Mensajes recientes

Hi Bob
You can get portletpreference object anf through that object you can get portlet instance id.
See below code :
PortletPreferences preferences = renderRequest.getPreferences();
String portletResource = ParamUtil.getString(request, "portletResource");
if (Validator.isNotNull(portletResource)) {
preferences = PortletPreferencesFactoryUtil.getPortletSetup(request, portletResource);
}

thumbnail
Subhash Pavuskar, modificado hace 11 años.

RE: Portlet Instance ID

Regular Member Mensajes: 234 Fecha de incorporación: 13/03/12 Mensajes recientes
Hi all ,

How to get the portlet instance id which is inside the nested portlet.

I have a Nested portlet which contains couple of portlets(like Asset Pubisher and KB article).

From the Lay out i'm able to get the Nested Portlet Information. But i don;t know how to get the children's information which is inside the Nested Portelt. Please help me on this. Below is the code snippet i used to get the Nested Portelt Info from the LayOut.


Layout l=LayoutLocalServiceUtil.getLayout(themeDisplay.getPlid()); 
LayoutTypePortlet articleLayoutTypePortlet = (LayoutTypePortlet)l.getLayoutType(); 
List<portlet> allPortlets = articleLayoutTypePortlet.getAllPortlets(column); 
for (Portlet p: allPortlets) 
{ 
//System.out.println("Portlet Id is"+p.getRootPortletId()); 
if(PortletKeys.NESTED_PORTLETS.equals(p.getRootPortletId())) 
{ 
//I'm able to come up to here. But don't know how to get children's information from this onwards. 
} 
}</portlet>