xxxxxxxxxx
1
<table id="dt-filter-search" class="table" cellspacing="0" width="100%">
2
<thead>
3
<tr>
4
<th class="th-sm">Ver
5
</th>
6
<th class="th-sm">Incidencia
7
</th>
8
<th class="th-sm">Departamento
9
</th>
10
<th class="th-sm">Solicitante
11
</th>
12
<th class="th-sm">Estado
13
</th>
14
<th class="th-sm">Fecha de apertura
15
</th>
16
17
</tr>
18
</thead>
19
<?php foreach (get_incidencias($conexion) as $dato): ?>
20
<tbody>
21
<tr>
22
<th><button type="button" class="btn btn-warning btn-rounded">Ver</button></th>
23
<td><?php echo $dato['incidencia'];?></td>
24
<td><?php echo $dato['nom_dep'];?></td>
25
<td><?php echo $dato['usuario'];?></td>
26
<td><?php echo $dato['estado'];?></td>
27
<td><?php echo $dato['fecha_inicio'];?></td>
28
29
</tr>
30
31
</tbody>
32
<?php endforeach ?>
33
<tfoot>
34
<tr>
35
<th>Ver
36
</th>
37
<th>Incidencia
38
</th>
39
<th>Departamento
40
</th>
41
<th>Solicitante
42
</th>
43
<th>Estado
44
</th>
45
<th>Fecha de apartura
46
</th>
47
48
</tr>
49
</tfoot>
50
</table>
1
1
xxxxxxxxxx
1
$(document).ready(function() {
2
$('#dt-filter-search').dataTable({
3
4
initComplete: function() {
5
this.api().columns().every(function() {
6
var column = this;
7
var search = $(`<input class="form-control form-control-sm" type="text" placeholder="Search">`)
8
.appendTo($(column.footer()).empty())
9
.on('change input', function() {
10
var val = $(this).val()
11
12
column
13
.search(val ? val : '', true, false)
14
.draw();
15
});
16
17
});
18
}
19
});
20
});
Console errors: 0