Skip to content

Commit 9ee2cf4

Browse files
committed
Organizing the json files into a json folder
1 parent 7857483 commit 9ee2cf4

20 files changed

+16
-16
lines changed

137.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ <h1>Refresh from url after use data option(<a href="https://github.com/wenzhixin
3939
}]
4040
});
4141
$('#button').click(function () {
42-
$table.bootstrapTable('refresh', {url: 'data1.json'});
42+
$table.bootstrapTable('refresh', {url: 'json/data1.json'});
4343
});
4444
});
4545
</script>

188.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ <h1>Show Export button only(<a href="https://github.com/wenzhixin/bootstrap-tabl
2323
<table id="table"
2424
data-toggle="table"
2525
data-show-export="true"
26-
data-url="data1.json">
26+
data-url="json/data1.json">
2727
<thead>
2828
<tr>
2929
<th data-field="id">ID</th>

220.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ <h1>Hide state column(<a href="https://github.com/wenzhixin/bootstrap-table/issu
2121
<table id="table"
2222
data-toggle="table"
2323
data-show-columns="true"
24-
data-url="data1.json">
24+
data-url="json/data1.json">
2525
<thead>
2626
<tr>
2727
<th data-field="state" data-checkbox="true"></th>

337.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ <h1>Custom fontawsome icons(<a href="https://github.com/wenzhixin/bootstrap-tabl
2525
data-show-columns="true"
2626
data-icons-prefix="fa"
2727
data-icons="icons"
28-
data-url="data1.json">
28+
data-url="json/data1.json">
2929
<thead>
3030
<tr>
3131
<th data-field="id">ID</th>

350.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ <h1>Support for data-field with dot notation(<a href="https://github.com/wenzhix
2626
data-show-toggle="true"
2727
data-show-columns="true"
2828
data-flat="true"
29-
data-url="350.json">
29+
data-url="json/350.json">
3030
<thead>
3131
<tr>
3232
<th data-field="github.name" data-sortable="true">Name</th>

353.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ <h1>Use responseHandler option to handle your response data(<a href="https://git
2222
<script>
2323
$(function () {
2424
$('#table').bootstrapTable({
25-
url: '353.json',
25+
url: 'json/353.json',
2626
columns: [{
2727
field: 'date',
2828
title: 'Date Stamp',

371.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ <h1>Using table content in a HTML form(<a href="https://github.com/wenzhixin/boo
2121
<input class="btn btn-default" type="submit" value="Submit">
2222
<table id="table"
2323
data-toggle="table"
24-
data-url="data1.json"
24+
data-url="json/data1.json"
2525
data-id-field="id"
2626
data-select-item-name="input"
2727
data-toolbar=":submit">

383.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ <h1>Use Flat UI to style the checkboxes(<a href="https://github.com/wenzhixin/bo
4343
<table id="table"
4444
data-toggle="table"
4545
data-pagination="true"
46-
data-url="data1.json">
46+
data-url="json/data1.json">
4747
<thead>
4848
<tr>
4949
<th data-field="state" data-checkbox="true"></th>

386.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
</div>
1919
<h1>Override default queryParam variables(<a href="https://github.com/wenzhixin/bootstrap-table/issues/386" target="_blank">#386).</a></h1>
2020
<table data-toggle="table"
21-
data-url="data1.json"
21+
data-url="json/data1.json"
2222
data-height="300"
2323
data-pagination="true"
2424
data-query-params-type=""

395.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ <h1>Enable/disable delete button on click checkbox(<a href="https://github.com/w
2020
<button id="remove" class="btn btn-danger" disabled>Delete</button>
2121
<table id="table"
2222
data-toggle="table"
23-
data-url="data1.json"
23+
data-url="json/data1.json"
2424
data-toolbar="#remove">
2525
<thead>
2626
<tr>

406.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ <h1>Align the toolbar and search input(<a href="https://github.com/wenzhixin/boo
2828
data-search-align="left"
2929
data-buttons-align="left"
3030
data-toolbar-align="right"
31-
data-url="data1.json">
31+
data-url="json/data1.json">
3232
<thead>
3333
<tr>
3434
<th data-field="id">ID</th>

409.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ <h1>Refresh method with new url(<a href="https://github.com/wenzhixin/bootstrap-
2323
<table id="table"
2424
data-toggle="table"
2525
data-toolbar=".toolbar"
26-
data-url="data1.json">
26+
data-url="json/data1.json">
2727
<thead>
2828
<tr>
2929
<th data-field="id">ID</th>
@@ -38,7 +38,7 @@ <h1>Refresh method with new url(<a href="https://github.com/wenzhixin/bootstrap-
3838
$(function () {
3939
$('#refresh').click(function () {
4040
$table.bootstrapTable('refresh', {
41-
url: '409.json'
41+
url: 'json/409.json'
4242
});
4343
});
4444
});

415.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ <h1>Get checked row index(<a href="https://github.com/wenzhixin/bootstrap-table/
2121
<table id="table"
2222
data-toggle="table"
2323
data-select-item-name="selectItemName"
24-
data-url="data1.json"
24+
data-url="json/data1.json"
2525
data-pagination="true"
2626
data-toolbar="#show">
2727
<thead>

424.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<h1>Toggle pagination (<a href="https://github.com/wenzhixin/bootstrap-table/issues/424" target="_blank">#424</a>).</h1>
2020
<table id="table"
2121
data-toggle="table"
22-
data-url="data1.json"
22+
data-url="json/data1.json"
2323
data-show-pagination-switch="true"
2424
data-pagination="true"
2525
data-page-size="10"

457.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<h1>Set the global defaults for the table(<a href="https://github.com/wenzhixin/bootstrap-table/issues/457" target="_blank">#457</a>).</h1>
3232
<table id="table"
3333
data-toggle="table"
34-
data-url="data2.json">
34+
data-url="json/data2.json">
3535
<thead>
3636
<tr>
3737
<th data-field="id">ID</th>

350.json renamed to json/350.json

File renamed without changes.

353.json renamed to json/353.json

File renamed without changes.

409.json renamed to json/409.json

File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)