留言板

How to reuse (instanceable) my custom portlet more than one time in my page

Suresh Rangachari,修改在12 年前。

How to reuse (instanceable) my custom portlet more than one time in my page

New Member 帖子: 14 加入日期: 11-12-14 最近的帖子
Hi ,

I have created a custom portlet. The thing here is i need to use that PORTLET as many times in my page.

But as of now liferay allows it use it one per page. i cannot instance it. can any one suggest what configuration or setting i need to do to make

my portlet available for use for multiple times in my page.



note : i just changed the liferay-portlet.xml file's code as

<portlet>
<portlet-name>AddOnDirectory</portlet-name>
<icon>/icon.png</icon>
<instanceable>false</instanceable> --- modified this to <instanceable>true</instanceable>


But i get exception only in console and page was keeep on loading with title as status-liferay.....

Can any one please help.


Thank You in advance
thumbnail
Juhi Kumari,修改在12 年前。

RE: How to reuse (instanceable) my custom portlet more than one time in my

Expert 帖子: 347 加入日期: 11-12-12 最近的帖子
Hi Suresh,
This is the way to get more than one instance of a portlet. Try once again, make <instanceable>true</instanceable> in liferay-portlet.xml.
And then deploy to server. After that add your portlet instance as many you want on a page.

Thanks & Regards
Juhi
Suresh Rangachari,修改在12 年前。

RE: How to reuse (instanceable) my custom portlet more than one time in my

New Member 帖子: 14 加入日期: 11-12-14 最近的帖子
Thanks Juhi that worked.

Thanks again...