Files
shopee-apps/assets/javascripts/tables/examples.datatables.tabletools.js
2026-06-13 16:02:07 +10:00

43 lines
682 B
JavaScript

(function( $ ) {
'use strict';
var datatableInit = function() {
var $table = $('#datatable-tabletools');
$table.dataTable({
sDom: "<'text-right mb-md'T>" + $.fn.dataTable.defaults.sDom,
oTableTools: {
sSwfPath: $table.data('swf-path'),
aButtons: [
{
sExtends: 'pdf',
sButtonText: 'PDF'
},
{
sExtends: 'csv',
sButtonText: 'CSV'
},
{
sExtends: 'xls',
sButtonText: 'Excel'
},
{
sExtends: 'print',
sButtonText: 'Print',
sInfo: 'Please press CTR+P to print or ESC to quit'
}
]
}
});
};
$(function() {
datatableInit();
});
}).apply( this, [ jQuery ]);