forked from wenzhixin/bootstrap-table-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtoggleView.html
More file actions
37 lines (34 loc) · 792 Bytes
/
toggleView.html
File metadata and controls
37 lines (34 loc) · 792 Bytes
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
<script>
init({
title: 'toggleView',
desc: 'Toggle the card/table view: <code>$table.bootstrapTable(\'toggleView\')',
links: ['bootstrap-table.min.css'],
scripts: ['bootstrap-table.min.js']
})
</script>
<div id="toolbar">
<button id="button" class="btn btn-secondary">toggleView</button>
</div>
<table
id="table"
data-toggle="table"
data-toolbar="#toolbar"
data-height="460"
data-url="json/data1.json">
<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>
<script>
var $table = $('#table')
var $button = $('#button')
function mounted() {
$button.click(function () {
$table.bootstrapTable('toggleView')
})
}
</script>