Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
$Class = Classloader('multiKonten',true);
$row = $Class->ListeMultiKonten();
head("Liste aller Multikonten");
?>
<table class="table table-hover" id="DataTables">
<thead>
<?php echo $row['head'];?>
</thead>
<tbody>
<?php echo $row['body'];?>
</tbody>
</table>
<?php foot();?>
<script>
$( document ).ready(function() {
$('#DataTables').DataTable({
'paging' : true,
'lengthChange': false,
'searching' : true,
'ordering' : true,
'info' : true,
'autoWidth' : false,
"language": {
"lengthMenu": "Display _MENU_ Einträge pro Seite",
"zeroRecords": "Nichts gefunden Entschuldigung",
"info": "Zeige Seite _PAGE_ von _PAGES_",
"infoEmpty": "Keine Einträge vorhanden",
"infoFiltered": "(filtered from _MAX_ total records)",
"paginate": {
"first": "erste",
"last": "letzte",
"next": "Weiter",
"previous": "Zurück"
}
},
"order": [[ 0, "desc" ]]
});
});
</script>