Foren

RE: LiferayFacesContext.getPortlet() method returning null

Hasika Pamunuwa, geändert vor 11 Jahren.

LiferayFacesContext.getPortlet() method returning null

New Member Beiträge: 11 Beitrittsdatum: 21.06.10 Neueste Beiträge
Following returns null when called from an action event method which is invoked by primefaces 3.2 command button. I'm using liferay-faces-portal-3.1.0-BETA2.jar and Liferay 6.1


LiferayFacesContext liferayFacesContext = LiferayFacesContext.getInstance();
Portlet portlet = liferayFacesContext.getPortlet();   // portlet is coming back as null


But following worked...


LiferayFacesContext liferayFacesContext = LiferayFacesContext.getInstance();
PortletRequestImpl portletRequest = (PortletRequestImpl) liferayFacesContext.getExternalContext().getRequest();
Portlet portlet = portletRequest.getPortlet();
thumbnail
Neil Griffin, geändert vor 11 Jahren.

RE: LiferayFacesContext.getPortlet() method returning null

Liferay Legend Beiträge: 2655 Beitrittsdatum: 27.07.05 Neueste Beiträge
Fixed in FACES-1212. emoticon