浏览代码

Fix #2461 related to updateRow method

Dennis Hernández 9 年之前
父节点
当前提交
efcc93546c
共有 2 个文件被更改,包括 2 次插入0 次删除
  1. 1 0
      CHANGELOG.md
  2. 1 0
      src/bootstrap-table.js

+ 1 - 0
CHANGELOG.md

@@ -14,6 +14,7 @@ ChangeLog
 - feat(js): add `sortClass` option
 - feat(js): add `totalField` Option
 - fix(css): fix #2208, dropdown-menu style bug
+- fix(js): fix #2461, adding the initPagination call to updateByUniqueId and updateRow methods
 - fix(filter-control extension): fix #2418, `height` cause datepicker not display the selected date
 - fix(export extension): fix #2220, selected rows does not work when data-pagination-side is server
 - fix(reorder-row extension): fix #1343, reorder rows bug with pagination

+ 1 - 0
src/bootstrap-table.js

@@ -2538,6 +2538,7 @@
         });
 
         this.initSearch();
+        this.initPagination();
         this.initSort();
         this.initBody(true);
     };