Server side filtering with i18n characters

Server side filtering with i18n characters

veeru_asveeru_as Posts: 2Questions: 2Answers: 0

Hi,

We are trying to achieve internationalized filtering with following code snipped while initializing the datatable

"fnServerParams": function (sAjaxSource, aoData, fnCallback){
$.ajax({
"contentType": "application/json;charset=UTF-8",
"type": "POST",
"url": sppMain.availableResourceUrl.spListValue,
"data": "requestData=" + encodeURIComponent(JSON.stringify(aoData)),
"success": fnCallback

});

This block of code is working in when the server is running on windows but same is not working on linux machine.

Please help us with a solution.

This discussion has been closed.