I m fetching record of 124,999 entries from database.how to take PDF and CSV of all data
I m fetching record of 124,999 entries from database.how to take PDF and CSV of all data
shakun1990
Posts: 1Questions: 1Answers: 0
This is the code i m using
$.fn.dataTable.ext.errMode = 'throw'; $(document).ready(function() { $('#editabledatatable').dataTable({ "infoEmpty": "No records available", "processing": true, "serverSide": true, "sAjaxSource": "source of data", "aLengthMenu": [[10, 25, 50,100], [10, 25, 50,100]], "aaSorting": [[0, 'asc']], "iDisplayLength": 10, "dom": 'T<"clear">lfrtip', "oLanguage": { "sInfoFiltered": "", "sProcessing": "" }, "tableTools": { "sSwfPath": "assets/swf/copy_csv_xls_pdf.swf", "aButtons": [ { "sExtends": "csv", "sButtonText": "CSV", "mColumns": [ 0,1,2,3], }, { "sExtends": "pdf", "sButtonText": "PDF", "mColumns": [ 0,1,2,3], } ] } }) var oTT = TableTools.fnGetInstance( 'editabledatatable' ); oTT.fnSelectAll(); });I want to take pdf and excel of all records together.please help.
This discussion has been closed.