forked from wenzhixin/bootstrap-table-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path431.html
52 lines (52 loc) · 1.82 KB
/
431.html
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
<!DOCTYPE html>
<html>
<head>
<title>Load pagination data</title>
<meta charset="utf-8">
<link rel="stylesheet" href="assets/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/bootstrap-table/src/bootstrap-table.css">
<link rel="stylesheet" href="assets/examples.css">
<script src="assets/jquery.min.js"></script>
<script src="assets/bootstrap/js/bootstrap.min.js"></script>
<script src="assets/bootstrap-table/src/bootstrap-table.js"></script>
<script src="ga.js"></script>
</head>
<body>
<div class="container">
<div class="ribbon">
<a href="https://github.com/wenzhixin/bootstrap-table-examples/blob/master/431.html" target="_blank">View Source on GitHub</a>
</div>
<h1>Load pagination data(<a href="https://github.com/wenzhixin/bootstrap-table/issues/431" target="_blank">#431</a>).</h1>
<table id="table"
data-toggle="table"
data-pagination="true"
data-side-pagination="server">
<thead>
<tr>
<th data-field="id">ID</th>
<th data-field="name">Item Name</th>
<th data-field="price">Item Price</th>
</tr>
</thead>
</table>
</div>
<script>
var $table = $('#table');
$(function () {
$table.on('page-change.bs.table', function (e, number, size) {
getData(number, size);
});
var options = $table.bootstrapTable('getOptions');
getData(options.pageNumber, options.pageSize);
});
function getData(number, size) {
$.get('/examples/bootstrap_table/data', {
offset: (number - 1) * size,
limit: size
}, function (res) {
$table.bootstrapTable('load', res);
});
}
</script>
</body>
</html>