Fórum

Add portlet programmatically

Long Bao Ly, modificado 13 Anos atrás.

Add portlet programmatically

New Member Postagens: 14 Data de Entrada: 05/11/10 Postagens Recentes
Hi everyone!
I am using liferay 6.1.2 .I wanna add portlet programtically
This is my code

AddPortletController.java

/*----------------------------------------------------------
Layout layout = (Layout)request.getAttribute(WebKeys.LAYOUT);
LayoutTypePortlet layoutTypePortlet = (LayoutTypePortlet)layout.getLayoutType();

long userid=Long.parseLong(request.getRemoteUser());

layoutTypePortlet.addPortletId(userid,portletId,colunmId,-1);

LayoutLocalServiceUtil.updateLayout(layout.getGroupId(), layout.isPrivateLayout(),layout.getLayoutId(), layout.getTypeSettings());
return new ModelAndView("my JSP");

*-------------------------------------------------------------------------/
I call that Controller by using this code in my JSP
<a href='<portlet:renderURL>
<portlet:param name="action" value="AddPortletController"/>
<portlet:param name="link" value="CoreVNITT_WAR_CoreVNIT"/>
</portlet:renderURL>'">Link
</a>
It works when I click the link but the portlet I wanna add only shows up after refreshing my JSP.
I don't quite understand .Please help me out with this problem!!!!
thumbnail
jelmer kuperus, modificado 13 Anos atrás.

RE: Add portlet programmatically

Liferay Legend Postagens: 1191 Data de Entrada: 10/03/10 Postagens Recentes
You are adding the portlet in a render method, do it in an action instead, after the action is executed the whole page will be re-rendered and it will work.
Long Bao Ly, modificado 13 Anos atrás.

RE: Add portlet programmatically

New Member Postagens: 14 Data de Entrada: 05/11/10 Postagens Recentes
Thanks jelmer

I did what you told me and it works.

Hope this topic can help the others