Browse Source

Release to v1.10.0

zhixin 10 years ago
parent
commit
e7318819d9

+ 1 - 0
CHANGELOG.md

@@ -20,6 +20,7 @@
 - [enh] Added `updateFormatText` method.
 - [enh] Added a third parameter to `detailFormatter` method passing the jQuery element.
 - [enh] Added new param for `updateCell` method to avoid table reinitialization.
+- [enh] Removed outline of th.
 - [enh] Added extension.json and composer.json files.
 - [enh] Added alternative group-by extension.
 - [enh] Added sticky-header extension.

+ 4 - 0
dist/bootstrap-table.css

@@ -64,6 +64,10 @@
     border-left: 1px solid #dddddd;
 }
 
+.fixed-table-container thead th:focus {
+    outline: 0 solid transparent;
+}
+
 .fixed-table-container thead th:first-child {
     border-left: none;
     border-top-left-radius: 4px;

+ 1 - 1
dist/bootstrap-table.js

@@ -624,7 +624,7 @@
         });
 
         // if options.data is setting, do not process tbody data
-        if (this.options.data) {
+        if (this.options.data.length) {
             return;
         }
 

File diff suppressed because it is too large
+ 1 - 1
dist/bootstrap-table.min.css


File diff suppressed because it is too large
+ 2 - 2
dist/bootstrap-table.min.js


+ 27 - 16
docs/_includes/latest-release.md

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

+ 4 - 0
docs/dist/bootstrap-table.css

@@ -64,6 +64,10 @@
     border-left: 1px solid #dddddd;
 }
 
+.fixed-table-container thead th:focus {
+    outline: 0 solid transparent;
+}
+
 .fixed-table-container thead th:first-child {
     border-left: none;
     border-top-left-radius: 4px;

+ 1 - 1
docs/dist/bootstrap-table.js

@@ -624,7 +624,7 @@
         });
 
         // if options.data is setting, do not process tbody data
-        if (this.options.data) {
+        if (this.options.data.length) {
             return;
         }
 

File diff suppressed because it is too large
+ 1 - 1
docs/dist/bootstrap-table.min.css


File diff suppressed because it is too large
+ 2 - 2
docs/dist/bootstrap-table.min.js