Datatables set pagination from serverside..

PHOTO EMBED

Wed May 17 2023 06:01:29 GMT+0000 (Coordinated Universal Time)

Saved by @Surdok #typescript #javascript

dataSrc: function (json) {
  json.draw = json.jsonData.draw;
  json.recordsTotal = json.jsonData.Total_Records;
  json.recordsFiltered = json.jsonData.Total_Records;
  // json.data.data = response.jsonData.CR_list;
  //Make your callback here.
  // alert("Done!");
  // console.log(json);
  return json.jsonData.CR_list;
},
content_copyCOPY