Foros de discusión

RE: LiferayFacesContext.getPortlet() method returning null

Hasika Pamunuwa, modificado hace 11 años.

LiferayFacesContext.getPortlet() method returning null

New Member Mensajes: 11 Fecha de incorporación: 21/06/10 Mensajes recientes
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, modificado hace 11 años.

RE: LiferayFacesContext.getPortlet() method returning null

Liferay Legend Mensajes: 2655 Fecha de incorporación: 27/07/05 Mensajes recientes
Fixed in FACES-1212. emoticon