Foren

Portlet Instance ID

Preben Ludviksen, geändert vor 16 Jahren.

Portlet Instance ID

New Member Beiträge: 7 Beitrittsdatum: 07.11.07 Neueste Beiträge
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, geändert vor 16 Jahren.

RE: Portlet Instance ID

Liferay Master Beiträge: 878 Beitrittsdatum: 08.10.07 Neueste Beiträge
String portletId = portletDisplay.getId();
Lester Chua, geändert vor 15 Jahren.

RE: Portlet Instance ID

New Member Beiträge: 4 Beitrittsdatum: 30.11.06 Neueste Beiträge
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, geändert vor 15 Jahren.

RE: Portlet Instance ID

New Member Beiträge: 8 Beitrittsdatum: 23.09.08 Neueste Beiträge
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, geändert vor 15 Jahren.

RE: Portlet Instance ID

Junior Member Beiträge: 70 Beitrittsdatum: 03.12.08 Neueste Beiträge
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, geändert vor 13 Jahren.

RE: Portlet Instance ID

New Member Beiträge: 2 Beitrittsdatum: 09.02.11 Neueste Beiträge
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, geändert vor 13 Jahren.

RE: Portlet Instance ID

Liferay Master Beiträge: 803 Beitrittsdatum: 10.03.08 Neueste Beiträge

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, geändert vor 11 Jahren.

RE: Portlet Instance ID

Regular Member Beiträge: 234 Beitrittsdatum: 13.03.12 Neueste Beiträge
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>