You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
468 B
14 lines
468 B
$(function(){
|
|
@foreach($editors as $editor)
|
|
{{ config('datatables-html.namespace', 'LaravelDataTables') }}["%1$s-{{$editor->instance}}"].on('preSubmit', function(e, data, action) {
|
|
if (action !== 'remove') return;
|
|
|
|
for (let row_id of Object.keys(data.data))
|
|
{
|
|
data.data[row_id] = {
|
|
DT_RowId: data.data[row_id].DT_RowId
|
|
};
|
|
}
|
|
});
|
|
@endforeach
|
|
});
|
|
|