Browse Source

update method getRowsHidden to getHiddenRows

zhixin 9 years ago
parent
commit
c09d12cd00

+ 2 - 0
CHANGELOG.md

@@ -8,6 +8,8 @@ ChangeLog
 - fix(js): fix #2385, checkbox render bug with formatter
 - fix(js): fix #750, showRow and hideRow bug
 - feat(js): fix #2414, add `paginationLoop` option
+- feat(js): update method `getRowsHidden` to `getHiddenRows`
+- fix(filter-control extension): fix #2418, `height` cause datepicker not display the selected date
 - feat(cookie extension): fix #2386, add `getCookies` method
 
 ### 1.11.0

+ 1 - 1
src/bootstrap-table.js

@@ -2969,7 +2969,7 @@
         'getSelections', 'getAllSelections', 'getData',
         'load', 'append', 'prepend', 'remove', 'removeAll',
         'insertRow', 'updateRow', 'updateCell', 'updateByUniqueId', 'removeByUniqueId',
-        'getRowByUniqueId', 'showRow', 'hideRow', 'getRowsHidden',
+        'getRowByUniqueId', 'showRow', 'hideRow', 'getHiddenRows',
         'mergeCells',
         'checkAll', 'uncheckAll', 'checkInvert',
         'check', 'uncheck',

+ 1 - 1
src/extensions/filter-control/bootstrap-table-filter-control.js

@@ -1,7 +1,7 @@
 /**
  * @author: Dennis Hernández
  * @webSite: http://djhvscf.github.io/Blog
- * @version: v2.1.0
+ * @version: v2.1.1
  */
 
 (function ($) {