掲示板

Add portlet programmatically

13年前 に Long Bao Ly によって更新されました。

Add portlet programmatically

New Member 投稿: 14 参加年月日: 10/11/05 最新の投稿
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
13年前 に jelmer kuperus によって更新されました。

RE: Add portlet programmatically

Liferay Legend 投稿: 1191 参加年月日: 10/03/10 最新の投稿
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.
13年前 に Long Bao Ly によって更新されました。

RE: Add portlet programmatically

New Member 投稿: 14 参加年月日: 10/11/05 最新の投稿
Thanks jelmer

I did what you told me and it works.

Hope this topic can help the others