Created
February 9, 2020 06:10
-
-
Save harunurkst/57e878718e3bdde7c5cce0ece75ed847 to your computer and use it in GitHub Desktop.
Use JQuery datatable with Django Rest Framework
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function(){ | |
$('#search-data').dataTable( { | |
destroy: true, // destroy previous datatable to remove error. | |
"ajax": url, | |
"columns": [ | |
{"data":"latitude"}, | |
{"data":"longitude"}, | |
{"data":"data__product_data__Name"}, | |
{"data":"id__count"}, | |
] | |
} ); | |
}); | |
# API response for this code | |
{ | |
"data": [ | |
{ | |
"longitude": 89.2408711, | |
"latitude": 23.8560988, | |
"data__product_data__Name": "GenWatt Diesel 200kW", | |
"id__count": 1 | |
}, | |
{ | |
"longitude": 89.2409323, | |
"latitude": 23.8562526, | |
"data__product_data__Name": "GenWatt Diesel 200kW", | |
"id__count": 3 | |
}, | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment