laravel-datatables-assets
Version:
Laravel DataTables Assets (Buttons, Renderers, Callback, etc...)
21 lines (20 loc) • 518 B
JavaScript
/**
* DataTables add button.
*
* -- Laravel Integration --
*
* Button::make('add')->text('<i class="fa fa-plus"></i> Add')
*
*/
$.fn.dataTable.ext.buttons.add = {
name: 'add',
className: 'buttons-add btn-success',
text: '<i class="fa fa-plus"></i> New',
action: function (e, dt, button, config) {
let uri = window.location.toString();
if (uri.indexOf("?") > 0) {
uri = uri.substring(0, uri.indexOf("?"));
}
window.location = uri + '/create';
}
};