UNPKG

laravel-datatables-vite-bs

Version:

Laravel DataTables with jQuery, Bootstrap 3 and Vite

20 lines (19 loc) 471 B
/** * DataTables print button. * * -- Laravel Integration -- * * Button::make('print') * */ document.addEventListener('DOMContentLoaded', function () { $.fn.dataTable.ext.buttons.print = { name: 'print', className: 'buttons-print btn-primary', titleAttr: 'Print', text: '<i class="fas fa-print"></i>', action: function (e, dt, button, config) { window.location = _buildUrl(dt, 'print'); } }; });