diff --git a/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/struts_dojo.js b/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/struts_dojo.js index 9c4a63d1b..1c41245af 100644 --- a/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/struts_dojo.js +++ b/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/struts_dojo.js @@ -15058,19 +15058,19 @@ self.log(ex); } },log:function(text){ dojo.debug("["+(this.widgetId?this.widgetId:"unknown")+"] "+text); -},startSearchFromInput:function(){ +},_startSearchFromInput:function(){ var _c8d=this.textInputNode.value; if(this.loadOnType){ if(_c8d.length>=this.loadMinimum){ var _c8e=this.dataUrl+(this.dataUrl.indexOf("?")>-1?"&":"?"); _c8e+=this.name+"="+_c8d; this.dataProvider.getData(_c8e); -this.startSearch(_c8d); +this._startSearch(_c8d); }else{ this._hideResultList(); } }else{ -this.startSearch(_c8d); +this._startSearch(_c8d); } }}); dojo.provide("dojo.widget.DropdownContainer"); diff --git a/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/struts_dojo.js.uncompressed.js b/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/struts_dojo.js.uncompressed.js index f7521b337..fe2a776bf 100644 --- a/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/struts_dojo.js.uncompressed.js +++ b/plugins/dojo/src/main/resources/org/apache/struts2/static/dojo/struts_dojo.js.uncompressed.js @@ -24437,20 +24437,20 @@ dojo.widget.defineWidget( dojo.debug("[" + (this.widgetId ? this.widgetId : "unknown") + "] " + text); }, - startSearchFromInput: function() { + _startSearchFromInput: function() { var searchStr = this.textInputNode.value; if(this.loadOnType) { - if(searchStr.length >= this.loadMinimum) { - var nuHref = this.dataUrl + (this.dataUrl.indexOf("?") > -1 ? "&" : "?"); - nuHref += this.name + '=' + searchStr; - this.dataProvider.getData(nuHref); - this.startSearch(searchStr); - } else { - this._hideResultList(); - } + if(searchStr.length >= this.loadMinimum) { + var nuHref = this.dataUrl + (this.dataUrl.indexOf("?") > -1 ? "&" : "?"); + nuHref += this.name + '=' + searchStr; + this.dataProvider.getData(nuHref); + this._startSearch(searchStr); + } else { + this._hideResultList(); + } } else { - this.startSearch(searchStr); + this._startSearch(searchStr); } } });