How to create multiple drill down table???

How to create multiple drill down table???

sidiqsidiq Posts: 2Questions: 1Answers: 0

How to create multiple drill down table???

Answers

  • OutbackMattOutbackMatt Posts: 2Questions: 1Answers: 0

    by using different #id for each table, and creating the required script for each

  • sidiqsidiq Posts: 2Questions: 1Answers: 0

    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" } ] } }); });
This discussion has been closed.