0
此代碼工作正常,但不更改任何導出按鈕不顯示。datatable tabletools csv不工作
我已經插在正確的位置的庫:
$this->document->add_css('jquery.datetimepicker.css');
$this->document->add_css('dataTables.tableTools.min.css');
$this->document->add_js('jquery.datetimepicker.js');
$this->document->add_js('jquery.dataTables.min.js');
$this->document->add_js('dataTables.tableTools.js');
這是我的代碼:
$(".table-dashboard").DataTable({
"dom": "T<\'clear\'>lfrtip",
initComplete: function(){
$(".scrollable-list").before($(".DTTT_container"));
$(".DTTT_container").css("margin-bottom", "-33px");
},
bFilter: false,
"aoColumnDefs":
[
{
"bSortable": false,
"aTargets": [$(this).find("thead tr th").length - 1]
}
],
"oTableTools":
{// "sSwfPath": "'.base_url(SYSTEM_MEDIA . "swf/copy_csv_xls_pdf.swf").'",
"sSwfPath": "http://cdn.datatables.net/tabletools/2.2.2/swf/copy_csv_xls_pdf.swf",
"aButtons":
[
{
"sExtends" : "csv",
"sButtonText" : "Export CSV <i class=\'fa fa-file-excel-o\'></i>",
"sButtonClass" : "btn btn-primary"
}
]
}
});