ajax-bootstrap2.html
2.53 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
63
64
65
66
67
68
<!doctype html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<title></title>
<link rel="stylesheet" href="lib/bootstrap2/css/bootstrap.min.css"/>
<link rel="stylesheet" href="lib/bootstrap2/css/bootstrap-responsive.min.css"/>
<link rel="stylesheet" href="lib/jquery.dataTables.bootstrap2/css/DT_bootstrap.css"/>
<link rel="stylesheet" href="../files/css/datatables.responsive.css"/>
<style>
.title {
font-size: larger;
font-weight: bold;
}
.table th.centered-cell, .table td.centered-cell {
text-align: center;
}
</style>
</head>
<body>
<div class="container">
<div class="row">
<div class="span12 title">Bootstrap v2.x Responsive Example Using AJAX with Checkboxes</div>
</div>
<div class="row">
<div class="span12">
<table id="example" class="table table-bordered table-striped">
<!--thead section is required-->
<thead>
<tr>
<th class="centered-cell"><input type="checkbox" id="masterCheck" class="checkbox" disabled/></th>
<th data-class="expand">Rendering engine</th>
<th>Browser</th>
<th data-hide="phone">Platform(s)</th>
<th data-hide="phone,tablet">Engine version</th>
<th data-hide="phone,tablet">CSS grade</th>
</tr>
</thead>
<!--tbody section is required-->
<tbody></tbody>
<!--tfoot section is optional-->
<tfoot>
<tr>
<th></th>
<th>Engine</th>
<th>Browser</th>
<th>Platform(s)</th>
<th>Engine version</th>
<th>CSS grade</th>
</tr>
</tfoot>
</table>
</div>
</div>
</div>
<script type="text/javascript" src="lib/lodash/lodash.min.js"></script>
<script type="text/javascript" src="lib/jquery/jquery.min.js"></script>
<script type="text/javascript" src="lib/jquery.dataTables/js/jquery.dataTables.min.js"></script>
<script type="text/javascript" src="lib/jquery.dataTables.bootstrap2/js/DT_bootstrap.js"></script>
<script type="text/javascript" src="../files/js/datatables.responsive.js"></script>
<script type="text/javascript" src="js/ajax-bootstrap2.js"></script>
</body>
</html>