掲示板

Embed portlet in layout using Liferay 6.1.1

thumbnail
11年前 に Jignesh Vachhani によって更新されました。

Embed portlet in layout using Liferay 6.1.1

Liferay Master 投稿: 803 参加年月日: 08/03/10 最新の投稿
Hi Everyone,

I am trying to put navigation portlet in my layout.
Now i am using below code to embed navigation portlet in layout :

$theme.runtime("71_INSTANCE_MAIN", "", $velocityPortletPreferences.toString())

So portlet is being embedded but out side of layout div tags .
Does anybody have any idea ? Is this Liferay OOB error ?
thumbnail
11年前 に Jignesh Vachhani によって更新されました。

RE: Embed portlet in layout using Liferay 6.1.1 EE GA2

Liferay Master 投稿: 803 参加年月日: 08/03/10 最新の投稿
I think I found the issue is ,



1) When i am using $processor.processPortlet

Ans : I used $processor.processPortlet("71_INSTANCE_MAIN") to embed portlet in layout .tpl file
but it can not read this.
I dig the code and found that it seems to be problem in Liferay Code TemplateProcessor.java class
In this class,processPortlet method seems to be using wrong portlet id @ 175 line number. (See below code)

public String processPortlet(String portletId) throws Exception {
		try {
			_request.setAttribute(
				WebKeys.RENDER_PORTLET_RESOURCE, Boolean.TRUE);

			return RuntimePortletUtil.processPortlet(
				_servletContext, _request, _response, null, null, [b]_portletId[/b],
				null, false);
		}
		finally {
			_request.removeAttribute(WebKeys.RENDER_PORTLET_RESOURCE);
		}
	}


2) When i am using $theme.runtime
Its rendering the code outside of layout and trying to find out the solution
thumbnail
11年前 に Jignesh Vachhani によって更新されました。

RE: Embed portlet in layout using Liferay 6.1.1

Liferay Master 投稿: 803 参加年月日: 08/03/10 最新の投稿
Thanks Liferay.

I got patch from liferay and now its working properly.
11年前 に Karen Smallwood によって更新されました。

RE: Embed portlet in layout using Liferay 6.1.1

New Member 投稿: 4 参加年月日: 10/05/17 最新の投稿
I have the same issue. Can you share where you located the patch?
thumbnail
11年前 に Jignesh Vachhani によって更新されました。

RE: Embed portlet in layout using Liferay 6.1.1

Liferay Master 投稿: 803 参加年月日: 08/03/10 最新の投稿
you can find this patch from liferay if you are using EE version
thumbnail
10年前 に Andew Jardine によって更新されました。

RE: Embed portlet in layout using Liferay 6.1.1

Liferay Legend 投稿: 2416 参加年月日: 10/12/22 最新の投稿
I just ran into the same issue this morning but I have found a work around (CE version, no patch). For me, I used the following line in my layout template and it worked --

$theme.runtime("[portletID], '', '')
thumbnail
10年前 に James Falkner によって更新されました。

RE: Embed portlet in layout using Liferay 6.1.1

Liferay Legend 投稿: 1399 参加年月日: 10/09/17 最新の投稿
Jignesh Vachhani:
1 - Stop Tomcat
2 - Copy the attached liferay-hotfix-110-6120.zip into $LIFERAY_HOME/patching-tool/patches folder
3 - Run 'patching-tool install' at $LIFERAY_HOME/patching-tool folder
4 - Run 'patching-tool info' to ensure that the patch has installed
5 - Start Tomcat


Hey Jignesh, please don't post EE hotfixes to our forums - as they are for enterprise subscription customers only. Thanks!
thumbnail
10年前 に Jignesh Vachhani によって更新されました。

RE: Embed portlet in layout using Liferay 6.1.1

Liferay Master 投稿: 803 参加年月日: 08/03/10 最新の投稿
Ohhh Thanks James for reminding me. Removed post