forked from wenzhixin/bootstrap-table-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
505 lines (486 loc) · 28.3 KB
/
index.html
File metadata and controls
505 lines (486 loc) · 28.3 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
<!DOCTYPE html>
<html>
<head>
<title>Bootstrap Table Examples</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="An extended Bootstrap table with radio, checkbox, sort, pagination, and other added features.">
<meta name="keywords" content="table, bootstrap, bootstrap plugin, bootstrap resources, bootstrap table, jQuery plugin">
<meta name="author" content="Zhixin Wen, and Bootstrap table contributors">
<!-- <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/css/bootstrap.min.css" integrity="sha384-GJzZqFGwb1QTTN6wy59ffF1BuGJpLSa9DkKMp0DgiMDm4iYMj70gZWKYbI706tWS" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/instantsearch.css@7.1.0/themes/reset-min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/instantsearch.css@7.1.0/themes/algolia-min.css">
<link href="assets/css/docs.min.css" rel="stylesheet">
<link href="assets/css/index.css?v=VERSION" rel="stylesheet">
<!-- Favicons -->
<link rel="apple-touch-icon" href="favicon.png">
<link rel="icon" href="favicon.png">
<script type="text/javascript">
if (window !== top) // 判断当前的window对象是否是top对象
top.location.href = window.location.href // 如果不是,将top对象的网址自动导向被嵌入网页的网址
</script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-132747866-1"></script>
<script>
window.dataLayer = window.dataLayer || []
function gtag() {window.dataLayer.push(arguments)}
gtag('js', new Date())
gtag('config', 'UA-132747866-1')
</script>
</head>
<body>
<a class="skippy sr-only sr-only-focusable" href="#content">
<span class="skippy-text">Skip to main content</span>
</a>
<header class="navbar navbar-expand navbar-dark flex-column flex-md-row bd-navbar">
<a class="navbar-brand mr-0 mr-md-2" href="https://bootstrap-table.com/" aria-label="Bootstrap">
<img src="favicon.png" width="36" height="36">
</a>
<div class="navbar-nav-scroll">
<ul class="navbar-nav bd-navbar-nav flex-row">
<li class="nav-item">
<a class="nav-link" href="https://bootstrap-table.com/">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://bootstrap-table.com/docs/getting-started/introduction/">
Documentation
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://bootstrap-table.com/themes">
CSS Frameworks
<span class="badge badge-warning">New</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link active" href="https://examples.bootstrap-table.com">
Examples
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://bootstrap-table.com/donate">
Donate
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="https://bootstrap-table.com/news">
News
</a>
</li>
</ul>
</div>
<ul class="navbar-nav flex-row ml-md-auto d-none d-md-flex">
<li class="nav-item dropdown">
<a class="nav-item nav-link dropdown-toggle mr-md-2" href="#" id="bd-theme" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span id="theme-title"></span>
<span class="badge badge-warning">New</span>
</a>
<div class="dropdown-menu dropdown-menu-right" aria-labelledby="bd-theme">
<a class="dropdown-item" data-theme="" href="index.html">Bootstrap v4</a>
<a class="dropdown-item" data-theme="bootstrap3" href="index.html?bootstrap3">Bootstrap v3</a>
<a class="dropdown-item" data-theme="semantic" href="index.html?semantic">Semantic UI</a>
<a class="dropdown-item" data-theme="bulma" href="index.html?bulma">Bulma</a>
<a class="dropdown-item" data-theme="materialize" href="index.html?materialize">Materialize</a>
<a class="dropdown-item" data-theme="foundation" href="index.html?foundation">Foundation</a>
</div>
</li>
<li class="nav-item">
<a class="nav-link p-2" href="https://github.com/wenzhixin/bootstrap-table" target="_blank" rel="noopener" aria-label="GitHub"><svg class="navbar-nav-svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 499.36" focusable="false" role="img"><title>GitHub</title><path d="M256 0C114.64 0 0 114.61 0 256c0 113.09 73.34 209 175.08 242.9 12.8 2.35 17.47-5.56 17.47-12.34 0-6.08-.22-22.18-.35-43.54-71.2 15.49-86.2-34.34-86.2-34.34-11.64-29.57-28.42-37.45-28.42-37.45-23.27-15.84 1.73-15.55 1.73-15.55 25.69 1.81 39.21 26.38 39.21 26.38 22.84 39.12 59.92 27.82 74.5 21.27 2.33-16.54 8.94-27.82 16.25-34.22-56.84-6.43-116.6-28.43-116.6-126.49 0-27.95 10-50.8 26.35-68.69-2.63-6.48-11.42-32.5 2.51-67.75 0 0 21.49-6.88 70.4 26.24a242.65 242.65 0 0 1 128.18 0c48.87-33.13 70.33-26.24 70.33-26.24 14 35.25 5.18 61.27 2.55 67.75 16.41 17.9 26.31 40.75 26.31 68.69 0 98.35-59.85 120-116.88 126.32 9.19 7.9 17.38 23.53 17.38 47.41 0 34.22-.31 61.83-.31 70.23 0 6.85 4.61 14.81 17.6 12.31C438.72 464.97 512 369.08 512 256.02 512 114.62 397.37 0 256 0z" fill="currentColor" fill-rule="evenodd"></path></svg>
</a>
</li>
<li class="nav-item">
<a class="nav-link p-2" href="https://twitter.com/wenzhixin2010" target="_blank" rel="noopener" aria-label="Twitter"><svg class="navbar-nav-svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 416.32" focusable="false" role="img"><title>Twitter</title><path d="M160.83 416.32c193.2 0 298.92-160.22 298.92-298.92 0-4.51 0-9-.2-13.52A214 214 0 0 0 512 49.38a212.93 212.93 0 0 1-60.44 16.6 105.7 105.7 0 0 0 46.3-58.19 209 209 0 0 1-66.79 25.37 105.09 105.09 0 0 0-181.73 71.91 116.12 116.12 0 0 0 2.66 24c-87.28-4.3-164.73-46.3-216.56-109.82A105.48 105.48 0 0 0 68 159.6a106.27 106.27 0 0 1-47.53-13.11v1.43a105.28 105.28 0 0 0 84.21 103.06 105.67 105.67 0 0 1-47.33 1.84 105.06 105.06 0 0 0 98.14 72.94A210.72 210.72 0 0 1 25 370.84a202.17 202.17 0 0 1-25-1.43 298.85 298.85 0 0 0 160.83 46.92" fill="currentColor"></path></svg>
</a>
</li>
<li class="nav-item">
<a class="nav-link p-2" href="https://opencollective.com/bootstrap-table" target="_blank" rel="noopener" aria-label="Open Collective"><svg class="navbar-nav-svg" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 40 41" focusable="false" role="img" fill="currentColor" fill-rule="evenodd"><title>Open Collective</title><path d="M32.8 21c0 2.4-.8 4.9-2 6.9l5.1 5.1c2.5-3.4 4.1-7.6 4.1-12 0-4.6-1.6-8.8-4-12.2L30.7 14c1.2 2 2 4.3 2 7z" fill-opacity=".4"></path><path d="M20 33.7a12.8 12.8 0 0 1 0-25.6c2.6 0 5 .7 7 2.1L32 5a20 20 0 1 0 .1 31.9l-5-5.2a13 13 0 0 1-7 2z"></path></svg>
</a>
</li>
</ul>
<a class="btn btn-bd-download d-none d-lg-inline-block mb-3 mb-md-0 ml-md-3" href="https://bootstrap-table.com/docs/getting-started/download/">Download</a>
</header>
<div class="container-fluid">
<div class="row flex-xl-nowrap">
<div class="col-12 col-md-3 col-xl-2 bd-sidebar">
<form class="bd-search d-flex align-items-center">
<div id="searchbox"></div>
<div id="hits">
<div class="hits-body"></div>
<div class="hits-footer">
Search by <a class="algolia-docsearch-footer--logo" href="https://www.algolia.com/docsearch">Algolia</a>
</div>
</div>
<button class="btn btn-link bd-search-docs-toggle d-md-none p-0 ml-3" type="button" data-toggle="collapse" data-target="#bd-docs-nav" aria-controls="bd-docs-nav" aria-expanded="false" aria-label="Toggle docs navigation"><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30" width="30" height="30" focusable="false" role="img"><title>Menu</title><path stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-miterlimit="10" d="M4 7h22M4 15h22M4 23h22"></path></svg>
</button>
</form>
<nav class="collapse bd-links" id="bd-docs-nav">
<div class="bd-toc-item">
<a class="bd-toc-link" href="#welcome.html">Welcome</a>
<ul class="nav bd-sidenav">
<li><a href="#welcome.html">Index</a></li>
<li><a href="#welcomes/from-html.html">From HTML</a></li>
<li><a href="#welcomes/from-data.html">From Data</a></li>
<li><a href="#welcomes/from-url.html">From URL</a></li>
<li data-show=""><a href="#welcomes/modal-table.html">Modal Table</a></li>
<li data-show="bootstrap3"><a href="#welcomes/modal-table-bootstrap3.html">Modal Table</a></li>
<li data-show="semantic"><a href="#welcomes/modal-table-semantic.html">Modal Table</a></li>
<li data-show="bulma"><a href="#welcomes/modal-table-bulma.html">Modal Table</a></li>
<li data-show="materialize"><a href="#welcomes/modal-table-materialize.html">Modal Table</a></li>
<li data-show="foundation"><a href="#welcomes/modal-table-foundation.html">Modal Table</a></li>
<li><a href="#welcomes/group-columns.html">Group Columns</a></li>
<li><a href="#welcomes/sub-table.html">Sub Table</a></li>
<li><a href="#welcomes/multiple-table.html">Multiple Table</a></li>
<li><a href="#welcomes/flat-json.html">Flat Json</a></li>
<li><a href="#welcomes/large-data.html">Large Data</a></li>
</ul>
</div>
<div class="bd-toc-item">
<a class="bd-toc-link" href="#options/table-height.html">Options</a>
<ul class="nav bd-sidenav">
<li><a href="#options/table-height.html">Table Height</a></li>
<li data-show=""><a href="#options/table-classes.html">Table Classes</a></li>
<li data-show=""><a href="#options/thead-classes.html">Thead Classes</a></li>
<li><a href="#options/row-style.html">Row Style</a></li>
<li data-show="bootstrap3,"><a href="#options/row-attributes.html">Row Attributes</a></li>
<li><a href="#options/undefined-text.html">Undefined Text</a></li>
<li><a href="#options/table-locale.html">Table Locale</a></li>
<li><a href="#options/table-sortable.html">Table Sortable</a></li>
<li><a href="#options/sort-class.html">Sort Class</a></li>
<li><a href="#options/silent-sort.html">Silent Sort</a></li>
<li><a href="#options/sort-name-order.html">Sort Name Order</a></li>
<li><a href="#options/sort-stable.html">Sort Stable</a></li>
<li><a href="#options/remember-order.html">Remember Order</a></li>
<li><a href="#options/custom-sort.html">Custom Sort</a></li>
<li><a href="#options/table-columns.html">Table Columns</a></li>
<li><a href="#options/table-method.html">Table Method</a></li>
<li><a href="#options/table-cache.html">Table Cache</a></li>
<li><a href="#options/content-type.html">Content Type</a></li>
<li><a href="#options/data-type.html">Data Type</a></li>
<li><a href="#options/table-ajax.html">Table AJAX</a></li>
<li><a href="#options/ajax-options.html">AJAX Options</a></li>
<li><a href="#options/query-params.html">Query Params</a></li>
<li><a href="#options/query-params-type.html">Query Params Type</a></li>
<li><a href="#options/response-handler.html">Response Handler</a></li>
<li><a href="#options/total-data-field.html">Total/Data Field</a></li>
<li><a href="#options/table-pagination.html">Table Pagination</a></li>
<li><a href="#options/only-info-pagination.html">Only Info Pagination</a></li>
<li><a href="#options/show-extended-pagination.html">Show Extended Pagination</a></li>
<li><a href="#options/total-not-filtered-field.html">Total Not Filtered Field</a></li>
<li><a href="#options/pagination-loop.html">Pagination Loop</a></li>
<li><a href="#options/client-side-pagination.html">Client Side Pagination</a></li>
<li><a href="#options/server-side-pagination.html">Server Side Pagination</a></li>
<li><a href="#options/page-number.html">Page Number</a></li>
<li><a href="#options/page-size.html">Page Size</a></li>
<li><a href="#options/page-list.html">Page List</a></li>
<li><a href="#options/pagination-h-align.html">Pagination H Align</a></li>
<li><a href="#options/pagination-v-align.html">Pagination V Align</a></li>
<li><a href="#options/pagination-text.html">Pagination Text</a></li>
<li><a href="#options/pagination-index-number.html">Pagination Index Number</a></li>
<li><a href="#options/table-search.html">Table Search</a></li>
<li><a href="#options/search-on-enter-key.html">Search On Enter Key</a></li>
<li><a href="#options/strict-search.html">Strict Search</a></li>
<li><a href="#options/trim-on-search.html">Trim On Search</a></li>
<li><a href="#options/search-align.html">Search Align</a></li>
<li><a href="#options/search-time-out.html">Search Time Out</a></li>
<li><a href="#options/search-text.html">Search Text</a></li>
<li><a href="#options/custom-search.html">Custom Search</a></li>
<li><a href="#options/show-header.html">Show Header</a></li>
<li><a href="#options/show-footer.html">Show Footer</a></li>
<li><a href="#options/footer-style.html">Footer Style</a></li>
<li><a href="#options/basic-columns.html">Basic Columns</a></li>
<li><a href="#options/large-columns.html">Large Columns</a></li>
<li><a href="#options/minimum-count-columns.html">Minimum Count Columns</a></li>
<li><a href="#options/show-pagination-switch.html">Show Pagination Switch</a></li>
<li><a href="#options/show-refresh.html">Show Refresh</a></li>
<li><a href="#options/show-toggle.html">Show Toggle</a></li>
<li><a href="#options/show-fullscreen.html">Show Fullscreen</a></li>
<li><a href="#options/smart-display.html">Smart Display</a></li>
<li><a href="#options/table-escape.html">Table Escape</a></li>
<li><a href="#options/id-field.html">Id Field</a></li>
<li><a href="#options/click-to-select.html">Click To Select</a></li>
<li><a href="#options/ignore-click-to-select-on.html">Ignore Click To Select On</a></li>
<li><a href="#options/single-select.html">Single Select</a></li>
<li><a href="#options/checkbox-header.html">Checkbox Header</a></li>
<li><a href="#options/maintain-selected.html">Maintain Selected</a></li>
<li><a href="#options/multiple-select-row.html">Multiple Select Row</a></li>
<li><a href="#options/card-view.html">Card View</a></li>
<li><a href="#options/detail-view.html">Detail View</a></li>
<li><a href="#options/detail-view-icon.html">Detail View Icon</a></li>
<li><a href="#options/detail-formatter.html">Detail Formatter</a></li>
<li><a href="#options/detail-filter.html">Detail Filter</a></li>
<li><a href="#options/custom-toolbar.html">Custom Toolbar</a></li>
<li><a href="#options/toolbar-align.html">Toolbar Align</a></li>
<li><a href="#options/buttons-toolbar.html">Buttons Toolbar</a></li>
<li><a href="#options/buttons-align.html">Buttons Align</a></li>
<li data-show="bootstrap3,"><a href="#options/buttons-class.html">Buttons Class</a></li>
<li data-show="bootstrap3,"><a href="#options/table-icons.html">Table Icons</a></li>
<li><a href="#options/icon-size.html">Icon Size</a></li>
<li data-show="bootstrap3,"><a href="#options/icons-prefix.html">Icons Prefix</a></li>
</ul>
</div>
<div class="bd-toc-item">
<a class="bd-toc-link" href="#column-options/aligning-columns.html">Column Options</a>
<ul class="nav bd-sidenav">
<li><a href="#column-options/aligning-columns.html">Aligning Columns</a></li>
<li><a href="#column-options/format.html">Format</a></li>
<li><a href="#column-options/disabled-checkbox.html">Disabled Checkbox</a></li>
</ul>
</div>
<div class="bd-toc-item">
<a class="bd-toc-link" href="#methods/getOptions.html">Methods</a>
<ul class="nav bd-sidenav">
<li><a href="#methods/getOptions.html">getOptions</a></li>
<li><a href="#methods/getSelections.html">getSelections</a></li>
<li><a href="#methods/getAllSelections.html">getAllSelections</a></li>
<li><a href="#methods/getData.html">getData</a></li>
<li><a href="#methods/getRowByUniqueId.html">getRowByUniqueId</a></li>
<li><a href="#methods/load.html">load</a></li>
<li><a href="#methods/append.html">append</a></li>
<li><a href="#methods/prepend.html">prepend</a></li>
<li><a href="#methods/remove.html">remove</a></li>
<li><a href="#methods/removeAll.html">removeAll</a></li>
<li><a href="#methods/removeByUniqueId.html">removeByUniqueId</a></li>
<li><a href="#methods/insertRow.html">insertRow</a></li>
<li><a href="#methods/updateRow.html">updateRow</a></li>
<li><a href="#methods/updateByUniqueId.html">updateByUniqueId</a></li>
<li><a href="#methods/showRow-hideRow.html">showRow/hideRow</a></li>
<li><a href="#methods/getHiddenRows.html">getHiddenRows</a></li>
<li><a href="#methods/mergeCells.html">mergeCells</a></li>
<li><a href="#methods/checkAll-uncheckAll.html">checkAll/uncheckAll</a></li>
<li><a href="#methods/check-uncheck.html">check/uncheck</a></li>
<li><a href="#methods/checkBy-uncheckBy.html">checkBy/uncheckBy</a></li>
<li><a href="#methods/refresh.html">refresh</a></li>
<li><a href="#methods/resetView.html">resetView</a></li>
<li><a href="#methods/destroy.html">destroy</a></li>
<li><a href="#methods/showLoading-hideLoading.html">showLoading/hideLoading</a></li>
<li><a href="#methods/showColumn-hideCoulumn.html">showColumn/hideCoulumn</a></li>
<li><a href="#methods/scrollTo.html">scrollTo</a></li>
<li><a href="#methods/selectPage-prevPage-nextPage.html">selectPage/prevPage/nextPage</a></li>
<li><a href="#methods/togglePagination.html">togglePagination</a></li>
<li><a href="#methods/toggleView.html">toggleView</a></li>
<li><a href="#methods/refreshOptions.html">refreshOptions</a></li>
<li><a href="#methods/resetSearch.html">resetSearch</a></li>
<li><a href="#methods/expandRow-collapseRow.html">expandRow/collapseRow</a></li>
<li><a href="#methods/filterBy.html">filterBy</a></li>
</ul>
</div>
<div class="bd-toc-item">
<a class="bd-toc-link" href="#extensions/accent-neutralise.html">Extensions</a>
<ul class="nav bd-sidenav">
<li><a href="#extensions/accent-neutralise.html">Accent Neutralise</a></li>
<li><a href="#extensions/addrbar.html">Addrbar</a></li>
<li><a href="#extensions/auto-refresh.html">Auto Refresh</a></li>
<li><a href="#extensions/cookie.html">Cookie</a></li>
<li><a href="#extensions/copy-rows.html">Copy Rows</a></li>
<li><a href="#extensions/defer-url.html">Defer Url</a></li>
<li data-show="bootstrap3"><a href="#extensions/editable.html">Editable</a></li>
<li><a href="#extensions/export.html">Export</a></li>
<li data-show="bootstrap3,"><a href="#extensions/filter-control.html">Filter Control</a></li>
<li data-show="bootstrap3,"><a href="#extensions/fixed-columns.html">Fixed Columns</a></li>
<li data-show="bootstrap3,"><a href="#extensions/group-by-v2.html">Group By V2</a></li>
<!-- <li><a href="#extensions/group-by.html">Group By</a></li> -->
<li><a href="#extensions/i18n-enhance.html">I18n Enhance</a></li>
<li><a href="#extensions/key-events.html">Key Events</a></li>
<li><a href="#extensions/mobile.html">Mobile</a></li>
<li data-show="bootstrap3"><a href="#extensions/multiple-sort.html">Multiple Sort</a></li>
<!-- <li><a href="#extensions/natural-sorting.html">Natural Sorting</a></li> -->
<li data-show="bootstrap3,"><a href="#extensions/page-jump-to.html">Page Jump To</a></li>
<li data-show="bootstrap3,"><a href="#extensions/print.html">Print</a></li>
<li><a href="#extensions/reorder-columns.html">Reorder Columns</a></li>
<li><a href="#extensions/reorder-rows.html">Reorder Rows</a></li>
<li><a href="#extensions/resizable.html">Resizable</a></li>
<li data-show="bootstrap3,"><a href="#extensions/select2-filter.html">Select2 Filter</a></li>
<li data-show=""><a href="#extensions/sticky-header.html">Sticky Header</a></li>
<li data-show="bootstrap3,"><a href="#extensions/toolbar.html">Toolbar</a></li>
<li><a href="#extensions/treegrid.html">Treegrid</a></li>
</ul>
</div>
<div class="bd-toc-item">
<a class="bd-toc-link" href="#issues/137.html">Issues</a>
<ul class="nav bd-sidenav">
<li>
<a href="#issues/137.html">
137. Refresh from url after use data option
</a>
</li>
<li>
<a href="#issues/152.html">
152. How to pass parameter to server
</a>
</li>
<li>
<a href="#issues/177.html">
177. The Multiple Fields in Column
</a>
</li>
<li>
<a href="#issues/188.html">
188. Show Export button only
</a>
</li>
<li>
<a href="#issues/220.html">
220. Hide state column
</a>
</li>
<li>
<a href="#issues/221.html">
221. Use cellStyle
</a>
</li>
<li>
<a href="#issues/283.html">
283. Use resetView to reset the header width
</a>
</li>
<li>
<a href="#issues/337.html">
337. Custom fontawsome icons
</a>
</li>
<li>
<a href="#issues/371.html">
371. Using table content in a HTML form
</a>
</li>
<li>
<a href="#issues/383.html">
383. Use Flat UI to style the checkboxes
</a>
</li>
<li>
<a href="#issues/386.html">
386. Override default queryParam variables
</a>
</li>
<li>
<a href="#issues/395.html">
395. Enable/disable delete button on click checkbox
</a>
</li>
<li>
<a href="#issues/406.html">
406. Align the toolbar and search input
</a>
</li>
<li>
<a href="#issues/409.html">
409. Refresh method with new url
</a>
</li>
<li>
<a href="#issues/415.html">
415. Get checked row index
</a>
</li>
<li>
<a href="#issues/424.html">
424. Toggle pagination
</a>
</li>
<li>
<a href="#issues/431.html">
431. Load pagination data
</a>
</li>
<li>
<a href="#issues/457.html">
457. Set the global defaults for the table
</a>
</li>
<li>
<a href="#issues/563.html">
563. Change the background color on selected rows
</a>
</li>
<li>
<a href="#issues/579.html">
579. Show images formatter
</a>
</li>
<li>
<a href="#issues/639.html">
639. Footer resizing problem.
</a>
</li>
<li>
<a href="#issues/917.html">
917. Maintain selected on server side.
</a>
</li>
<li>
<a href="#issues/986.html">
986. Editable select box
</a>
</li>
<li>
<a href="#issues/987.html">
987. Save row data using input.
</a>
</li>
<li>
<a href="#issues/1167.html">
1167. Check/Uncheck All in all page with client side
</a>
</li>
<li>
<a href="#issues/2211.html">
2211. Rotated table column headers
</a>
</li>
<li>
<a href="#issues/2619.html">
2619. Click sort with html Checkbox
</a>
</li>
<li>
<a href="#issues/3345.html">
3345. Check/Uncheck All in all page with server side
</a>
</li>
<li>
<a href="#issues/3830.html">
3830. Export all records with server side pagination
</a>
</li>
<li>
<a href="#issues/3949.html">
3949. Multiple group header and large columns
</a>
</li>
<li>
<a href="#issues/4210.html">
4210. Get table full url
</a>
</li>
<li>
<a href="#issues/4214.html">
4214. Added index field
</a>
</li>
</ul>
</div>
<div class="bd-toc-item">
<a class="bd-toc-link" href="https://github.com/wenzhixin/bootstrap-table-examples" target="_blank">
Examples GitHub
</a>
</div>
</nav>
</div>
<main class="col-12 col-md-9 col-xl-10 py-md-3 bd-content" role="main">
<iframe width="100%" height="100%"></iframe>
</main>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.6/umd/popper.min.js" integrity="sha384-wHAiFfRlMFy6i5SRaxvfOCifBUQy1xHdJ/yoi7FRNXMRBu5WHdZYu1hA6ZOblgut" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.2.1/js/bootstrap.min.js" integrity="sha384-B0UglyR+jN6CkvvICOB2joaf5I4l3gm9GU6Hc1og6Ls7i6U/mkkaduKaBhlAXv9k" crossorigin="anonymous"></script>
<script>$.browser = {}</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery-hashchange/1.3/jquery.ba-hashchange.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/algoliasearch@3.32.0/dist/algoliasearchLite.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/instantsearch.js@3.0.0/dist/instantsearch.production.min.js"></script>
<script src="assets/js/docs.min.js"></script>
<script src="assets/js/index.js?v=VERSION"></script>
</body>
</html>