This is my jQuery data table code.
$('#dynamic_list').DataTable({
"order": [[ 0, "desc" ]],
"iDisplayLength": '100',
});
I have more than 500 rows in data-table but pagination doesn't work properly and also data-table pagination showing
Showing 1 to **0,100** of 1,500 entries
Here you can see comma separated between 0,100. That might be create the problem in pagination. I'm not sure.
Can you guys help me out on this ?
Thanks in advance!