Message Boards

serveResource of MVCPortlet is not fetching formdata.

Durai pandian, modified 2 Years ago.

serveResource of MVCPortlet is not fetching formdata.

New Member Posts: 11 Join Date: 10/25/12 Recent Posts

For ajax call I am sending two parameters a form data.

In the serveResource I am getting the formdata like :

ParamUtil.getBoolean(request, "cookieConsent")

ParamUtil.getLong(request, "cookieConsentDate")

 

I am receiving only null value. Thanks in advance. 


 

thumbnail
Mohammed Yasin, modified 2 Years ago.

RE: serveResource of MVCPortlet is not fetching formdata. (Answer)

Liferay Master Posts: 591 Join Date: 8/8/14 Recent Posts

 Hi,

You may need to prepend the parameter name with PortletNamespace before submitting to fetch it in ParamUtil. 

//Using taglib
<portlet:namespace/>cookieConsent=false
//Using Scriptlet      
<%=renderResponse.getNamespace()%>

 or 

directly get it from Request Object

request.getParameter("cookieConsent");