1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/resources/views/datatable.blade.php

68 lines
2.1 KiB
PHP
Raw Normal View History

2015-05-10 21:02:35 +02:00
<table class="table table-striped data-table {{ $class = str_random(8) }}">
2015-03-16 22:45:25 +01:00
<colgroup>
@for ($i = 0; $i < count($columns); $i++)
<col class="con{{ $i }}" />
@endfor
</colgroup>
<thead>
<tr>
@foreach($columns as $i => $c)
<th align="center" valign="middle" class="head{{ $i }}"
@if ($c == 'checkbox')
style="width:20px"
@endif
>
@if ($c == 'checkbox' && $hasCheckboxes = true)
<input type="checkbox" class="selectAll"/>
@else
{{ $c }}
@endif
</th>
@endforeach
</tr>
</thead>
<tbody>
@foreach($data as $d)
<tr>
@foreach($d as $dd)
<td>{{ $dd }}</td>
@endforeach
</tr>
@endforeach
</tbody>
</table>
<script type="text/javascript">
jQuery(document).ready(function(){
// dynamic table
jQuery('.{{ $class }}').dataTable({
"fnRowCallback": function(row, data) {
if (data[0].indexOf('ENTITY_DELETED') > 0) {
$(row).addClass('entityDeleted');
}
if (data[0].indexOf('ENTITY_ARCHIVED') > 0) {
$(row).addClass('entityArchived');
}
},
2015-05-10 21:02:35 +02:00
"bAutoWidth": false,
2015-03-16 22:45:25 +01:00
@if (isset($hasCheckboxes) && $hasCheckboxes)
'aaSorting': [['1', 'asc']],
// Disable sorting on the first column
"aoColumnDefs": [ {
'bSortable': false,
'aTargets': [ 0, {{ count($columns) - 1 }} ]
} ],
@endif
@foreach ($options as $k => $o)
{!! json_encode($k) !!}: {!! json_encode($o) !!},
2015-03-16 22:45:25 +01:00
@endforeach
@foreach ($callbacks as $k => $o)
{!! json_encode($k) !!}: {!! $o !!},
2015-03-16 22:45:25 +01:00
@endforeach
"fnDrawCallback": function(oSettings) {
if (window.onDatatableReady) {
window.onDatatableReady();
}
}
});
});
</script>