I found this answer in this question.
In the answer, it says:
"mData": "Name",
"mRender": function (data, type, row) {
return "<a href='Admin/Categories/Edit/" + data + "'>EDIT</a>";
I'm look for a way to include two variables, for instance:
"mData": ["Name", "User"],
"mRender": function (data, type, row) {
return "<a href='Admin/Categories/Edit/" + data[0] + data[1] + "'>EDIT</a>";
Is there any way I can do that?