MVC jquery datatable return multiple ajax response
MVC jquery datatable return multiple ajax response
I had no idea where to ask, I new to jquerydatatabl server processing, with the below tutorial, I had make it work
http://www.codeproject.com/Articles/155422/jQuery-DataTables-and-ASP-NET-MVC-Integration-Part
but is weird that each time fire to server, it will return 3 same respond, same data but with different encho from server? Is that the normal behavior? It look like will slow down the table process ever just a few record
example:
aaData: [[New, 19/08/2013, T000017, null, null, null, null, null],…]
iTotalDisplayRecords: 17
iTotalRecords: 17
sEcho: "1"
aaData: [[New, 19/08/2013, T000017, null, null, null, null, null],…]
iTotalDisplayRecords: 17
iTotalRecords: 17
sEcho: "2"
aaData: [[New, 19/08/2013, T000017, null, null, null, null, null],…]
iTotalDisplayRecords: 17
iTotalRecords: 17
sEcho: "3"
http://www.codeproject.com/Articles/155422/jQuery-DataTables-and-ASP-NET-MVC-Integration-Part
but is weird that each time fire to server, it will return 3 same respond, same data but with different encho from server? Is that the normal behavior? It look like will slow down the table process ever just a few record
example:
aaData: [[New, 19/08/2013, T000017, null, null, null, null, null],…]
iTotalDisplayRecords: 17
iTotalRecords: 17
sEcho: "1"
aaData: [[New, 19/08/2013, T000017, null, null, null, null, null],…]
iTotalDisplayRecords: 17
iTotalRecords: 17
sEcho: "2"
aaData: [[New, 19/08/2013, T000017, null, null, null, null, null],…]
iTotalDisplayRecords: 17
iTotalRecords: 17
sEcho: "3"
This discussion has been closed.
Replies
Allan