Liferay provides nice way to create render URL in Javascript. Liferay ships with Java script framework called AUI (Alloy UI – http://alloyui.com). AUI is a modular…
Liferay provides PortletURLFactoryUtil class to create render URL in portlet. such render URL can point to other portelt thay may be placed on different page.…
portlet:renderURL is one of the custom tag provided by default portlet implementation (resides in portlet.jar).This tag is used to create render URL. In this…
liferay-portlet:renderURL is a custom tag provided by Liferay. This tag is used to create render URL. In this article, I will be showing how to create render…
Portlet performs unique operation in each lifecycle execution. These lifecycles are known as portlet phases. Each portlet phase / lifecycle is represented by respective methods in portlet class. In Servlet,…
Initialization phase of Portlet is represented by init() method. When portlet is deployed, portlet container will destroy any existing instance and create new instance…
portlet lifecycle method render is responsible for generating portlet content. it’s called when portlet is executed in render phase Portlet lifecycle method render method represents render…
Liferay artifacts are useful in building and organizing a portal. Following liferay artifacts are key building blocks to construct liferay portal. Liferay artifacts Users Users…
Liferay is open source portal. Its source is freely available.Sometimes we need to refer of liferay source during development. Its convenient if we can configure…