Forums de discussion

LiferayFacesContext.getPortlet() method returning null

Hasika Pamunuwa, modifié il y a 11 années.

LiferayFacesContext.getPortlet() method returning null

New Member Publications: 11 Date d'inscription: 21/06/10 Publications récentes
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, modifié il y a 11 années.

RE: LiferayFacesContext.getPortlet() method returning null

Liferay Legend Publications: 2655 Date d'inscription: 27/07/05 Publications récentes
Fixed in FACES-1212. emoticon