浏览代码

Fix #2191

Example: https://jsfiddle.net/d05axjb9/9/
Dennis Hernández 9 年之前
父节点
当前提交
0be26dd6bb
共有 1 个文件被更改,包括 3 次插入0 次删除
  1. 3 0
      src/extensions/multiple-search/bootstrap-table-multiple-search.js

+ 3 - 0
src/extensions/multiple-search/bootstrap-table-multiple-search.js

@@ -17,6 +17,9 @@
 
     BootstrapTable.prototype.initSearch = function () {
         if (this.options.multipleSearch) {
+            if (this.searchText === undefined) {
+                return;
+            }
             var strArray = this.searchText.split(" "),
                 that = this,
                 f = $.isEmptyObject(this.filterColumns) ? null : this.filterColumns,