ソースを参照

Fix #2191

Example: https://jsfiddle.net/d05axjb9/9/
Dennis Hernández 9 年 前
コミット
0be26dd6bb

+ 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,