Can't fecth json data source for remote domain
Can't fecth json data source for remote domain
suppertbw
Posts: 2Questions: 2Answers: 0
Following is my code and it is always displaying processing. Why?
<script>
$(document).ready(function () {
$('#mytable').dataTable({
"processing": true,
"serverSide": true,
"ajax": {
"url": "https://tasks.inlogik.com/devtest/animals",
"dataType": "jsonp",
}
});
});
</script>
This discussion has been closed.
Answers
But the server hasn't implemented server-side processing. Unless you are going to have 50k+ rows, just remove the
serverSide
(why is it there?).Allan