i have json with \ escape (as seen in chrome inspector):
"[{\"Id\":3,\"Email\".....
When i try to populate jQuery Datatables i get the following error:
Requested unknown parameter 'Id' for row 0
In my javascript:
table = $('#UserTableList').DataTable({
ajax: {
url: '/User/GetUsers',
dataSrc: ''
},
columns: [
{ data: 'Id' },
{ data: 'Email' }]
});
The problem is the \ escape in the json?