-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (61 loc) · 1.28 KB
/
index.html
File metadata and controls
62 lines (61 loc) · 1.28 KB
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
<!DOCTYPE html>
<html>
<head>
<title> js-datatable-rowspan </title>
<meta charset=utf-8>
<meta name=description content="plugin datatable">
<meta name=viewport content="width=device-width, initial-scale=1">
<!-- lib -->
<link rel="stylesheet" href="lib/datatables.css">
<script src="lib/jquery.js"></script>
<script src="lib/datatables.js"></script>
<script src="lib/ratatable.js"></script>
<!-- custom -->
<script type="text/javascript">
$(document).ready(function() {
$('#maTable').ratatable({
'info': false,
'paging': false,
});
});
</script>
</head>
<body>
<table id="maTable">
<thead>
<tr>
<th class="no-search"> ID </th>
<th> Nom </th>
<th> Date </th>
<th> Document </th>
</tr>
</thead>
<tbody>
<tr>
<td data-ref="0"> 0 </td>
<td data-ref="0"> yaourt </td>
<td> 23/11 </td>
<td> specs.pdf </td>
</tr>
<tr>
<td data-ref="0"> 0 </td>
<td data-ref="0"> yaourt </td>
<td> 20/10 </td>
<td> photo.jpg </td>
</tr>
<tr>
<td data-ref="1"> 1 </td>
<td data-ref="1"> viande </td>
<td> 24/12 </td>
<td> certif.pdf </td>
</tr>
<tr>
<td data-ref="1"> 1 </td>
<td data-ref="1"> viande </td>
<td> 20/10 </td>
<td> photo.jpg </td>
</tr>
</tbody>
</table>
</body>
</html>