forked from SaintSilver/datatables-ex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (43 loc) · 1.68 KB
/
index.html
File metadata and controls
48 lines (43 loc) · 1.68 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>DataTables Examples</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="vendor/css/jquery.dataTables.min.css">
<link rel="stylesheet" type="text/css" href="vendor/css/responsive.dataTables.min.css">
<link rel="stylesheet" type="text/css" href="css/main.css">
<script src='vendor/js/jquery-3.3.1.min.js'></script>
<script src="vendor/js/jquery.dataTables.js"></script>
<script src="vendor/js/dataTables.responsive.min.js"></script>
<script src="vendor/js/dataTables.buttons.min.js"></script>
<script src="vendor/js/buttons.html5.min.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<div class="wrap">
<h1>DataTables Grid Example</h1>
<table id="myTable" class="display" style="width:100%;">
<thead>
<tr>
<th>id</th>
<th>first_name</th>
<th>last_name</th>
<th data-orderable="false">email</th>
<th data-orderable="false">gender</th>
<th>date</th>
<th data-orderable="false">ip_address</th>
<th>money</th>
</tr>
</thead>
<tfoot>
<tr>
<th colspan="2" style="text-align:right;white-space:nowrap;">TOTAL : </th>
<th colspan="6" style="text-align:left;white-space:nowrap;"></th>
</tr>
</tfoot>
</table>
</div>
</body>
</html>