Thursday, March 20, 2014

Not getting parameters in controller class in Liferay 6.2 (Namespaced Parameters)


Starting from Liferay 6.2 only allows namespaced parameters. If we want to send unnamespaced parameters we need to turn the filter off. To achieve the same we need to add the following property in portlet's liferay-portlet.xml file.


<requires-namespaced-parameters>false</requires-namespaced-parameters>

Friday, March 7, 2014

Ajax call using jQuery in Liferay Spring Portlet

1. JSP Code


<script src="http://code.jquery.com/jquery-1.11.0.min.js"></script>
<liferay-portlet:resourceURL var="sampleUrl" />
<input type="button" value="Ajax Call" onclick="ajaxMethod('${sampleUrl}');" />
<script>
function ajaxMethod(sampleUrl){
$.ajax({
type: 'GET',
url: sampleUrl,
cache:false,
async:true,
error: function(){
alert('error');
},
dataType : "html",
data :{
name:"hello123"
},
success: function(htmlData) {
alert('response : ' + htmlData);
},
complete: function(){
}
});
}
</script>
view raw jquery-ajax-jsp hosted with ❤ by GitHub
2. Method code in controller class


@ResourceMapping
public void serveResource(ResourceRequest request, ResourceResponse response)
{
System.out.println("method called");
try {
response.getWriter().write("<h1>Hello</h1>");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}