I cannot get buttons to display in a datatables.net table. I have tried adding every script related to buttons and every initialization example given on datatables.net, but they
Expanding on gaetanoM's answer, I tried to identify the minimum required commands and references to make Datatables Buttons work. This is what I came up with:
$(function () {
$('#myTable').DataTable({
dom: 'B',
buttons: true
});
});
Or variant with specific buttons and the rest of the dom options:
$(function () {
$('#myTable').DataTable({
dom: 'lBfrtiBp',
buttons: ['copy', 'excel', 'csv', 'pdf', 'print' ]
});
});
And these appear to be the required includes if using jQuery Datatables:
Required for Datatables to function:
src="https://code.jquery.com/jquery-2.2.4.js"
src="https://cdn.datatables.net/1.10.13/js/jquery.dataTables.js"
Optional for Datatables to function:
src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.11.4/jquery-ui.js"
src="https://cdn.datatables.net/1.10.13/js/dataTables.jqueryui.js"
Required for any Buttons to appear:
src="https://cdn.datatables.net/buttons/1.2.4/js/dataTables.buttons.js"
src="https://cdn.datatables.net/buttons/1.2.4/js/buttons.html5.js"
If Print button or buttons:true, this is required for any Buttons or Dom items to appear:
src="https://cdn.datatables.net/buttons/1.2.4/js/buttons.print.js"
Required for Excel button to appear:
src="https://cdnjs.cloudflare.com/ajax/libs/jszip/2.5.0/jszip.js"
Required for PDF button to appear:
src="https://cdn.rawgit.com/bpampuch/pdfmake/0.1.18/build/pdfmake.js"
Optional, breaks formatting on buttons if jqueryui is used but this is not included:
src="https://cdn.datatables.net/buttons/1.2.4/js/buttons.jqueryui.js"
Complete example:
$(function () {
$('#myTable').DataTable({
"dom": 'lBfrtiBp',
'buttons': ['copy', 'excel', 'csv', 'pdf', 'print' ]
});
});
Name Position Office Age Start date Salary
Tiger Nixon System Architect Edinburgh 61 2011/04/25 $320,800
Garrett Winters Accountant Tokyo 63 2011/07/25 $170,750
Ashton Cox Junior Technical Author San Francisco 66 2009/01/12 $86,000
Cedric Kelly Senior Javascript Developer Edinburgh 22 2012/03/29 $433,060
Airi Satou Accountant Tokyo 33 2008/11/28 $162,700
Brielle Williamson Integration Specialist New York 61 2012/12/02 $372,000
Herrod Chandler Sales Assistant San Francisco 59 2012/08/06 $137,500
Rhona Davidson Integration Specialist Tokyo 55 2010/10/14 $327,900
Colleen Hurst Javascript Developer San Francisco 39 2009/09/15 $205,500
Sonya Frost Software Engineer Edinburgh 23 2008/12/13 $103,600
Jena Gaines Office Manager London 30 2008/12/19 $90,560
Quinn Flynn Support Lead Edinburgh 22 2013/03/03 $342,000
Charde Marshall Regional Director San Francisco 36 2008/10/16 $470,600
Haley Kennedy Senior Marketing Designer London 43 2012/12/18 $313,500
Tatyana Fitzpatrick Regional Director London 19 2010/03/17 $385,750
Michael Silva Marketing Designer London 66 2012/11/27 $198,500
Paul Byrd Chief Financial Officer (CFO) New York 64 2010/06/09 $725,000
Gloria Little Systems Administrator New York 59 2009/04/10 $237,500
Bradley Greer Software Engineer London 41 2012/10/13 $132,000
Dai Rios Personnel Lead Edinburgh 35 2012/09/26 $217,500
Jenette Caldwell Development Lead New York 30 2011/09/03 $345,000
Yuri Berry Chief Marketing Officer (CMO) New York 40 2009/06/25 $675,000
Caesar Vance Pre-Sales Support New York 21 2011/12/12 $106,450
Doris Wilder Sales Assistant Sidney 23 2010/09/20 $85,600