Duplicate Rows On Ajax Request
Duplicate Rows On Ajax Request
mahmood_tahir
Posts: 1Questions: 0Answers: 0
I'm using following code in ASP.NET MVC Application. If first time five records render then on every next request records five duplicate records will add. How can I solve this problem?
$('#tableStandardResults').dataTable({
"sPaginationType": "full_numbers",
"bFilter": false,
"bDestroy": false
});
$('#tableStandardResults').dataTable({
"sPaginationType": "full_numbers",
"bFilter": false,
"bDestroy": false
});
This discussion has been closed.