Skip to content Skip to sidebar Skip to footer

Sorting Not Working Datatable Plugin

DataTables Cannot read property 'length' of undefined I have same problem like the above link. I have a link to json data. My JQUERY: $('#card-table').DataTable({ 'ajax': 'htt

Solution 1:

Data tables expects the JSON object to have the format {"data": [{..,..},{...,...}]}.

Check this example https://datatables.net/examples/data_sources/ajax.html (click the tab "AJAX" and see the format).

You can change it.

enter image description here

Post a Comment for "Sorting Not Working Datatable Plugin"