Fórum

export/import

Sameer Shaik, modificado 11 Anos atrás.

export/import

New Member Postagens: 19 Data de Entrada: 02/08/12 Postagens Recentes
How to export data of a custom portlet into a LAR file programatically ?
thumbnail
Hitoshi Ozawa, modificado 11 Anos atrás.

RE: export/import

Liferay Legend Postagens: 7942 Data de Entrada: 24/03/10 Postagens Recentes
Are you asking how to add export/import to your portlet?
The first step is to add Configuration to your portlet so when a user select Options, Export/Import will show up in the menu.
The next step is to implement export/import. Check the following wiki for more information.

http://www.liferay.com/community/wiki/-/wiki/Main/Portlet+DataHandlers
Sameer Shaik, modificado 11 Anos atrás.

RE: export/import

New Member Postagens: 19 Data de Entrada: 02/08/12 Postagens Recentes
hi hitoshi,

Thanks for the reply...

Can you please tell me how to link export/import tab as shown in the following (export-import.png) with (export.import.png)..i mean how to get "export" button and "cancel" button in (export.import.png)
thumbnail
Hitoshi Ozawa, modificado 11 Anos atrás.

RE: export/import

Liferay Legend Postagens: 7942 Data de Entrada: 24/03/10 Postagens Recentes
Just specify PorletDataHandlerImpl you've created in <portlet-data-handler-class> tag in the liferay-portlet.xml file.

Example:
<portlet-data-handler-class>com.liferay.portlet.calendar.lar.CalendarPortletDataHandlerImpl</portlet-data-handler-class>
Sameer Shaik, modificado 11 Anos atrás.

RE: export/import

New Member Postagens: 19 Data de Entrada: 02/08/12 Postagens Recentes
yeah i got export/import tab but how to display "export button" and "cancel button" in the following page and how to link "export button " with exportdata() method
thumbnail
Hitoshi Ozawa, modificado 11 Anos atrás.

RE: export/import

Liferay Legend Postagens: 7942 Data de Entrada: 24/03/10 Postagens Recentes
Have you looked at the source for Calendar's export/import

portal-impl\src\com\liferay\portlet\calendar\lar
Sameer Shaik, modificado 11 Anos atrás.

RE: export/import

New Member Postagens: 19 Data de Entrada: 02/08/12 Postagens Recentes
hi hitoshi,

Thanks a lot dude..everything is working fine now..
thumbnail
Hitoshi Ozawa, modificado 11 Anos atrás.

RE: export/import

Liferay Legend Postagens: 7942 Data de Entrada: 24/03/10 Postagens Recentes
Great! Liferay's source code offers one of the best examples around to develop liferay portlets. I goes through them often myself when I get stuck from just reading the documentation.
Sameer Shaik, modificado 11 Anos atrás.

RE: export/import

New Member Postagens: 19 Data de Entrada: 02/08/12 Postagens Recentes
hi hitoshi,

Can you please tell me where the control is flowing after clicking export/import tab,and also i need the total control flow till the LAR File creation ,i am getting confused.