Hi,
first, thanks Alan for this great job.
My question is, i'm using dataTables with serverside processing , works perfect.
I have 50 000 rows, i use ajax processing, like this :
With TableTools it's almost good , the only thing is when i try to save as csv (or xls) , it's saving only the data present in the DOM (Display records), is there a way to save all data at once (50 000) ?
first, thanks Alan for this great job.
My question is, i'm using dataTables with serverside processing , works perfect.
I have 50 000 rows, i use ajax processing, like this :
jQuery('#example').dataTable( {
"bProcessing": true,
"bServerSide": true,
"sDom": 'T<"clear">lfrtip',
"sPaginationType": "full_numbers",
"sAjaxSource": "stat-export/stat_getdata.php",
"fnServerData": function ( sSource, aoData, fnCallback ) {
jQuery.ajax( {
"dataType": 'json',
"type": "POST",
"url": sSource,
"data": aoData,
"success": fnCallback
} );
}
} );
With TableTools it's almost good , the only thing is when i try to save as csv (or xls) , it's saving only the data present in the DOM (Display records), is there a way to save all data at once (50 000) ?