I am a big fan of Tabulator, I have been using it for the past two years with web forms c#, recently I have updated the tabulator from 4.9 to 5.2.7 and the data doesn't load. When I switch back to 4.9 it works, anything higher than 4.9 doesn't work, I checked the upgrade guide but couldn't figure out what to change in my code.
$(document).ready(function () {
var table = new Tabulator("#example-table", {
pagination: "remote",
ajaxResponse: function (url, params, response) {
console.log(response);
return response.d;
},
autoColumns: true,
ajaxURL: "pagingForm.aspx/GetVehicleDetails",
paginationSize: 20,
ajaxConfig: {
method: "get",
headers: {
"Content-type": 'application/json; charset=utf-8',
},
}
});
});