-
Notifications
You must be signed in to change notification settings - Fork 0
/
datatable.php
110 lines (104 loc) · 3.36 KB
/
datatable.php
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
<?php
session_start();
$_SESSION["tipo"] = "estudiante";
/**$page tendrá el resto del contenido que se mostrará en el cuerpo**/
/**Este es el nombre de la página, aparecerá en el title del cuerpo**/
$page["nombrePag"] = "Perfil";
/**Llamada a la función perfil definida en el fichero /js/tetuanjobs.js
Se le llama en el cuerpo en las últimas líneas**/
ob_start();?>
<script type="text/javascript">
var table = $('#ejemplo').DataTable( {
responsive: true,
"language": {
"decimal": "",
"emptyTable": "No hay datos disponibles",
"info": "Mostrando de _START_ a _END_ de _TOTAL_ entradas",
"infoEmpty": "Mostrando de 0 a 0 de 0 entradas",
"infoFiltered": "(filtrado de _MAX_ total entradas)",
"infoPostFix": "",
"thousands": ",",
"lengthMenu": "Mostrar _MENU_ entradas",
"loadingRecords": "Cargando...",
"processing": "Procesando...",
"search": "Buscar:",
"zeroRecords": "No encontrado",
"paginate": {
"first": "Primero",
"last": "Último",
"next": "Siguiente",
"previous": "Anterior"
}
}
});
</script>
<?php
$page["js"] = ob_get_clean();
ob_start();
?>
<h1>Data Table</h1>
<div class="panel sinborde">
<!--<input type="hidden" name="key" value="<%=usuario.Key%>" />-->
<input type="hidden" id="idtokken" name="idtokken" value="numero tokken" >
<!-- -->
<div class="panel panel-default">
<div class="panel-heading">
<h4>Otra información</h4>
</div>
<div class="panel-body">
<table id="ejemplo" class="display t-responsive" cellspacing="0" width="100%">
<thead>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Age</th>
<th>Start date</th>
<th>Salary</th>
</tr>
</thead>
<tfoot>
<tr>
<th>Name</th>
<th>Position</th>
<th>Office</th>
<th>Age</th>
<th>Start date</th>
<th>Salary</th>
</tr>
</tfoot>
<tbody>
<tr>
<td>Tiger Nixon</td>
<td>System Architect</td>
<td>Edinburgh</td>
<td>61</td>
<td>2011/04/25</td>
<td>$320,800</td>
</tr>
<tr>
<td>Garrett Winters</td>
<td>Accountant</td>
<td>Tokyo</td>
<td>63</td>
<td>2011/07/25</td>
<td>$170,750</td>
</tr>
</table>
</div>
<div class="panel-footer">
<div class="row">
<div class="col-md-12 text-right">
<input type="submit" class="btn btn-green" name="guardarcarnet" value="Guardar">
</div>
</div>
</div>
</div>
<!-- Fin de datatable -->
</div>
<?php
/** Guardamos el buffer del cuerpo **/
$page["cuerpo"] = ob_get_clean();
/** Incluimos el fichero cuerpo **/
include_once("cuerpo.php");
?>