2016-03-07 72 views
0
<script> 
$(document).ready(function() { 
$('#example').DataTable({ 
    "language": { 
     "url": "../jquery/plugins/dataTables/ff.json" 
     }, 
     "columns": [ null, null, { "width": "6%" }, { "width": "6%" } ], 
     "order": [], 
     "columnDefs": [ {"targets" : 'no-sort', "orderable": false} ], 
     "dom": 'Bfrtip', 
     "buttons": [ 'copyHtml5', 'excelHtml5', 'csvHtml5', 'pdfHtml5' ]    
}); 
$("[data-toggle=tooltip]").tooltip(); 

}); 自舉數據表導出按鈕

任何人可以幫助我......一切工作,除了顯示出口按鈕...預先感謝您的幫助

+1

什麼不工作? –

回答

0

你必須包括額外的JS文件HTML5出口按鈕的工作。

使用Download Builder並生成JS/CSS鏈接包括以下組件:

  • 按鈕

    • HTML5出口
    • JSZip
    • pdfmake
$('#example').DataTable({ 
    "language": { 
     "url": "../jquery/plugins/dataTables/ff.json" 
    }, 
    "columns": [ null, null, { "width": "6%" }, { "width": "6%" } ], 
    "order": [], 
    "columnDefs": [ {"targets" : 'no-sort', "orderable": false} ], 
    "dom": 'Bfrtip', 
    "buttons": [ 'copyHtml5', 'excelHtml5', 'csvHtml5', 'pdfHtml5' ]    
}); 

this jsFiddle示範。

+0

做到了這一點,但仍然沒有...謝謝 – Lef

+0

@Lef,增加了演示,以表明它的工作原理。很可能你沒有包含正確的文件。 –