浏览代码

Merge pull request #2207 from dabros/patch-10

Fix #1981
wenzhixin 10 年之前
父节点
当前提交
a631aea078
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/extensions/filter-control/bootstrap-table-filter-control.js

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

@@ -519,7 +519,7 @@
     BootstrapTable.prototype.initSearch = function () {
     BootstrapTable.prototype.initSearch = function () {
         _initSearch.apply(this, Array.prototype.slice.apply(arguments));
         _initSearch.apply(this, Array.prototype.slice.apply(arguments));
 
 
-        if (this.options.sidePagination !== 'server') {
+        if (this.options.sidePagination === 'server') {
             return;
             return;
         }
         }