How to display data about 3000 record ?
How to display data about 3000 record ?
headshot9x
Posts: 59Questions: 16Answers: 1
Hello guys . I use datatable , when data 50 record , it's show ok , But i test data about ~3000 record , datatable not show
var table;
table = $('#div_table').DataTable({
"processing": false,
"serverSide": false,
"ajax": {
"url": "../BUS/WebService.asmx/VIEW_DATA",
"dataType": "json",
"contentType": "application/json; charset=utf-8",
"type": "POST",
data: function (data) { return "{'user_id_temp':'" + id + "'}"; },
dataSrc: function (json) { return $.parseJSON(json.d); }
},
"language": {
"lengthMenu": "Show _MENU_",
"zeroRecords": "Not found - Sorry",
"info": "Page _PAGE_ of _PAGES_ (_MAX_ records)",
"infoEmpty": "No records",
"infoFiltered": "",
"sSearch": "Search"
},
Can you tell me about this problem ? What's happen in here ?
Thank guys.
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Per the forum rules, please link to a test case showing the issue so we can debug it please.
Allan