Fórumok

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

Suresh Rangachari, módosítva 12 év-val korábban

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

New Member Bejegyzések: 14 Csatlakozás dátuma: 2011.12.14. Legújabb bejegyzések
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, módosítva 12 év-val korábban

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

Expert Bejegyzések: 347 Csatlakozás dátuma: 2011.12.12. Legújabb bejegyzések
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, módosítva 12 év-val korábban

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

New Member Bejegyzések: 14 Csatlakozás dátuma: 2011.12.14. Legújabb bejegyzések
Thanks Juhi that worked.

Thanks again...