Skip to content

Commit e731881

Browse files
committed
Release to v1.10.0
1 parent b85098a commit e731881

10 files changed

+44
-24
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
- [enh] Added `updateFormatText` method.
2121
- [enh] Added a third parameter to `detailFormatter` method passing the jQuery element.
2222
- [enh] Added new param for `updateCell` method to avoid table reinitialization.
23+
- [enh] Removed outline of th.
2324
- [enh] Added extension.json and composer.json files.
2425
- [enh] Added alternative group-by extension.
2526
- [enh] Added sticky-header extension.

dist/bootstrap-table.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,10 @@
6464
border-left: 1px solid #dddddd;
6565
}
6666

67+
.fixed-table-container thead th:focus {
68+
outline: 0 solid transparent;
69+
}
70+
6771
.fixed-table-container thead th:first-child {
6872
border-left: none;
6973
border-top-left-radius: 4px;

dist/bootstrap-table.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@
624624
});
625625

626626
// if options.data is setting, do not process tbody data
627-
if (this.options.data) {
627+
if (this.options.data.length) {
628628
return;
629629
}
630630

dist/bootstrap-table.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/bootstrap-table.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

docs/_includes/latest-release.md

Lines changed: 27 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,30 @@
11
### Latest release
22

3-
#### v{{ site.current_version }} (2015-10-25)
3+
#### v{{ site.current_version }} (2016-01-18)
44

5-
- [bug] Removed no records events.
6-
- [bug] Fixed cardView fieldIndex error.
7-
- [bug] Fixed #1130: table-condensed is not working.
8-
- [bug] Fixed #1482: export all server sidePagination bug(export extension).
9-
- [bug] Fixed #1248: IE8 does not support indexOf function.
10-
- [bug] Fixed #1491: (un)check event element argument missing.
11-
- [bug] Fixed Italian translation.
12-
- [bug] Unified naming of MS in type names(export extension).
13-
- [bug] Fixed selectPage method fails(cookie extension).
14-
- [bug] Add ja-JP and ms-MY translation for formatAllRows.
15-
- [enh] UniqueId can also be stored in a row's data property.
16-
- [enh] Use default settings when cookie settings don't exist(cookie extension).
17-
- [enh] Expand `filterBy` to accept and array of values.
18-
- [enh] Added `updateByUniqueId` method.
19-
- [doc] Added `iconSize` docs.
5+
- [bug] Fixed #1619: sub-table checkbox selects all the table.
6+
- [bug] Fixed icons for ability customizing.
7+
- [bug] Fixed #1677: paginationSwitch for server-side.
8+
- [bug] Fixed #1613: padding in footer.
9+
- [bug] Fixed #1742: showRow & hideRow param checks.
10+
- [bug] Fixed getItemField bug.
11+
- [bug] Fixed #617: server side pagination uses `this.options.searchText`.
12+
- [bug] Fixed class name does not apply to checkbox field bug.
13+
- [bug] Fixed clear function and searchFormatter option of filter-control extension.
14+
- [bug] Fixed year computation on cookie extension.
15+
- [bug] Fixed ReorderRows init when reorderable is false.
16+
- [bug] Fix #1660: removed powerpoint type of export extension.
17+
- [enh] Added `title` attribute to pagination controls defining the page number.
18+
- [enh] Added `escape` option.
19+
- [enh] Added `searchOnEnterKey` option.
20+
- [enh] Added `updateFormatText` method.
21+
- [enh] Added a third parameter to `detailFormatter` method passing the jQuery element.
22+
- [enh] Added new param for `updateCell` method to avoid table reinitialization.
23+
- [enh] Removed outline of th.
24+
- [enh] Added extension.json and composer.json files.
25+
- [enh] Added alternative group-by extension.
26+
- [enh] Added sticky-header extension.
27+
- [enh] Added filterLocal option to filter-control extension.
28+
- [enh] Enabled data attributes for editable column.
29+
- [enh] Added IconSize option to export extension.
30+
- [enh] Added tooltip for filter-control toolbar button.

docs/dist/bootstrap-table.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,10 @@
6464
border-left: 1px solid #dddddd;
6565
}
6666

67+
.fixed-table-container thead th:focus {
68+
outline: 0 solid transparent;
69+
}
70+
6771
.fixed-table-container thead th:first-child {
6872
border-left: none;
6973
border-top-left-radius: 4px;

docs/dist/bootstrap-table.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -624,7 +624,7 @@
624624
});
625625

626626
// if options.data is setting, do not process tbody data
627-
if (this.options.data) {
627+
if (this.options.data.length) {
628628
return;
629629
}
630630

0 commit comments

Comments
 (0)