datatable.directory codebase
https://datatable.directory/
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.
37 lines
1.0 KiB
37 lines
1.0 KiB
@php
|
|
$tab = 'edit-rows';
|
|
/** @var \App\Tables\Column[] $columns */
|
|
/** @var \App\Tables\Changeset $changeset */
|
|
/** @var \App\Models\Row[]|Illuminate\Pagination\Paginator $rows */
|
|
/** @var \App\Models\Table $table */
|
|
@endphp
|
|
|
|
@extends('table.propose.layout-row-pagination')
|
|
|
|
@section('rows')
|
|
@php
|
|
$transformed = $rows->keyBy('_id')->map(function($r) use ($changeset) {
|
|
/** @var \App\Tables\Changeset $changeset */
|
|
return $changeset->transformRow($r, true);
|
|
});
|
|
@endphp
|
|
|
|
<div id="rows-editor"></div>
|
|
@stop
|
|
|
|
@push('scripts')
|
|
<script>
|
|
ready(function() {
|
|
app.RowsEditor('#rows-editor', {
|
|
hasPages: @json($rows->hasPages()),
|
|
pager:
|
|
'<nav class="text-center" aria-label="Table pages">' +
|
|
@json((string)$rows->links(null, ['ulClass' => 'mb-0'])) +
|
|
'</nav>',
|
|
route: {!! toJSON($table->draftUpdateRoute) !!},
|
|
columns: {!! toJSON($columns) !!},
|
|
xRows: {!! toJSON($transformed, true) !!},
|
|
})
|
|
});
|
|
</script>
|
|
@endpush
|
|
|