How to create multiple drill down table???
How to create multiple drill down table???
sidiq
Posts: 2Questions: 1Answers: 0
How to create multiple drill down table???
This discussion has been closed.
Answers
by using different #id for each table, and creating the required script for each
yes thank I have problem I can't export to excel
$(document).ready( function () { $.fn.dataTable.TableTools.defaults.aButtons = [ "copy", "csv", "xls" ]; TableTools.DEFAULTS.sSwfPath = "https://googledrive.com/host/0Bz8XDWwyuSghUGlucXZraEJ4TnM/swf/copy_csv_xls_pdf.swf"; $('#incoming').DataTable( { dom: 'T<"clear">lfrtip', "fnDrawCallback": function () { $('#incoming tfoot').html(''); }, tableTools: { "sSwfPath":"https://googledrive.com/host/0Bz8XDWwyuSghUGlucXZraEJ4TnM/swf/copy_csv_xls_pdf.swf", "aButtons": [ { "sExtends": "pdf", }, { "sExtends": "copy", "sButtonText": "Copy to clipboard" }, { "sExtends": "csv", "sButtonText": "Save as CVS" }, { "sExtends": "xls", "sButtonText": "Export to excel" }, { "sExtends": "print", "sButtonText": "print frendly" } ] } }); });