UNPKG

laravel-datatables-assets

Version:

Laravel DataTables Assets (Buttons, Renderers, Callback, etc...)

17 lines (16 loc) 411 B
/** * DataTables pdf button. * * -- Laravel Integration -- * * Button::make('pdf')->text('Export to PDF') * */ $.fn.dataTable.ext.buttons.pdf = { name: 'pdf', className: 'buttons-pdf btn-primary', text: '<i class="fa fa-file-pdf-o" data-toggle="tooltip" data-title="Export to PDF"></i>', action: function (e, dt, button, config) { window.location = _buildUrl(dt, 'pdf'); } };