Using fnServerParams with sAjaxSource
Using fnServerParams with sAjaxSource
Is it possible to use fnServerParams and push some additional data to the query string of ajax call that is fetching data from server? If I use fnServerParams with sAjaxSource like this
[code]
"fnServerParams": function (aoData) {
aoData.push({"ddd": "ssss"})
console.log(aoData)
},
[/code]
aoData is changed, but at the end of url is only undefined.
[code]
"fnServerParams": function (aoData) {
aoData.push({"ddd": "ssss"})
console.log(aoData)
},
[/code]
aoData is changed, but at the end of url is only undefined.
This discussion has been closed.
Replies
Allan