UNPKG

laravel-datatables-vite

Version:

Laravel DataTables with jQuery, Bootstrap and Vite

20 lines (19 loc) 487 B
/** * DataTables pdf button. * * -- Laravel Integration -- * * Button::make('pdf')->text('Export to PDF') * */ document.addEventListener('DOMContentLoaded', function () { DataTable.ext.buttons.pdf = { name: 'pdf', className: 'buttons-pdf btn-primary', titleAttr: 'Export as PDF', text: '<i class="bi bi-file-pdf"></i>', action: function (e, dt, button, config) { window.location = _buildUrl(dt, 'pdf'); } }; });