I have 10,000 records. I am using datatables and for back-end I am using php and mysql. The first time when I am trying to load my application, it is taking much time due to heavy records. So please tell me how to avoid this loading issue and for my time during loading only 20 records I want to load. My code is like :
$('#example').dataTable( {
"bProcessing": true,
"sAjaxSource": "datatable-businesslist.php",
"bJQueryUI": true,
"sPaginationType": "full_numbers",
"sDom": 'T<"clear">lfrtip',
"oLanguage": {
"sSearch": "Search all columns:"
},
"oTableTools": {
"aButtons": [
{
"sExtends": "csv",
"sButtonText": "Save to CSV",
"mColumns":[0,1,2,3,4,5,6,7,8],
"bFooter":false
}
},
"aoColumns": [
null,null,null,null,null,{ "bSortable": false },null,null,null,{ "bSortable": false }
]
} );
and in the datatable-businesslist.php page, I wrote down the simple server side code as I got from datatables.net site. So please help me how to avoid this issue.