ソースを参照

Merge pull request #2207 from dabros/patch-10

Fix #1981
wenzhixin 9 年 前
コミット
a631aea078

+ 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;
         }
         }