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.