diff --git a/bi/base.js b/bi/base.js index a87574fc0..37c398684 100644 --- a/bi/base.js +++ b/bi/base.js @@ -18216,11 +18216,6 @@ BI.Editor = BI.inherit(BI.Single, { return BI.trim(this.editor.getValue()); }, - setValid: function (b) { - BI.Editor.superclass.setValid.apply(this, arguments); - this.editor.setValid(b); - }, - isEditing: function () { return this.editor.isEditing(); }, @@ -19483,8 +19478,8 @@ BI.Input = BI.inherit(BI.Single, { return this._lastValidValue; }, - setValid: function () { - BI.Input.superclass.setValid.apply(this, arguments); + _setValid: function () { + BI.Input.superclass._setValid.apply(this, arguments); if (this.isValid()) { this._lastValidValue = this.getValue(); this.element.removeClass("bi-input-error"); diff --git a/bi/case.js b/bi/case.js index 668dfc064..240ab1d94 100644 --- a/bi/case.js +++ b/bi/case.js @@ -5184,11 +5184,7 @@ BI.SearchEditor = BI.inherit(BI.Widget, { this.clear.visible(); } }, - - setValid: function (b) { - this.editor.setValid(b); - }, - + isEditing: function () { return this.editor.isEditing(); }, @@ -5867,11 +5863,6 @@ BI.SignEditor = BI.inherit(BI.Widget, { return this.editor.isValid(); }, - setValid: function (v) { - BI.SignEditor.superclass.setValid.apply(this, arguments); - this.editor.setValid(v); - }, - setErrorText: function (text) { this.editor.setErrorText(text); }, diff --git a/docs/base.js b/docs/base.js index a87574fc0..37c398684 100644 --- a/docs/base.js +++ b/docs/base.js @@ -18216,11 +18216,6 @@ BI.Editor = BI.inherit(BI.Single, { return BI.trim(this.editor.getValue()); }, - setValid: function (b) { - BI.Editor.superclass.setValid.apply(this, arguments); - this.editor.setValid(b); - }, - isEditing: function () { return this.editor.isEditing(); }, @@ -19483,8 +19478,8 @@ BI.Input = BI.inherit(BI.Single, { return this._lastValidValue; }, - setValid: function () { - BI.Input.superclass.setValid.apply(this, arguments); + _setValid: function () { + BI.Input.superclass._setValid.apply(this, arguments); if (this.isValid()) { this._lastValidValue = this.getValue(); this.element.removeClass("bi-input-error"); diff --git a/docs/case.js b/docs/case.js index 668dfc064..240ab1d94 100644 --- a/docs/case.js +++ b/docs/case.js @@ -5184,11 +5184,7 @@ BI.SearchEditor = BI.inherit(BI.Widget, { this.clear.visible(); } }, - - setValid: function (b) { - this.editor.setValid(b); - }, - + isEditing: function () { return this.editor.isEditing(); }, @@ -5867,11 +5863,6 @@ BI.SignEditor = BI.inherit(BI.Widget, { return this.editor.isValid(); }, - setValid: function (v) { - BI.SignEditor.superclass.setValid.apply(this, arguments); - this.editor.setValid(v); - }, - setErrorText: function (text) { this.editor.setErrorText(text); }, diff --git a/src/base/single/editor/editor.js b/src/base/single/editor/editor.js index b352506e2..a0a684474 100644 --- a/src/base/single/editor/editor.js +++ b/src/base/single/editor/editor.js @@ -292,11 +292,6 @@ BI.Editor = BI.inherit(BI.Single, { return BI.trim(this.editor.getValue()); }, - setValid: function (b) { - BI.Editor.superclass.setValid.apply(this, arguments); - this.editor.setValid(b); - }, - isEditing: function () { return this.editor.isEditing(); }, diff --git a/src/base/single/input/input.js b/src/base/single/input/input.js index 06d59168e..48c17ebcb 100644 --- a/src/base/single/input/input.js +++ b/src/base/single/input/input.js @@ -241,8 +241,8 @@ BI.Input = BI.inherit(BI.Single, { return this._lastValidValue; }, - setValid: function () { - BI.Input.superclass.setValid.apply(this, arguments); + _setValid: function () { + BI.Input.superclass._setValid.apply(this, arguments); if (this.isValid()) { this._lastValidValue = this.getValue(); this.element.removeClass("bi-input-error"); diff --git a/src/case/editor/editor.search.js b/src/case/editor/editor.search.js index 1cad5eb31..4658b9d9f 100644 --- a/src/case/editor/editor.search.js +++ b/src/case/editor/editor.search.js @@ -157,11 +157,7 @@ BI.SearchEditor = BI.inherit(BI.Widget, { this.clear.visible(); } }, - - setValid: function (b) { - this.editor.setValid(b); - }, - + isEditing: function () { return this.editor.isEditing(); }, diff --git a/src/case/editor/editor.sign.js b/src/case/editor/editor.sign.js index 13e39bc73..2c148209e 100644 --- a/src/case/editor/editor.sign.js +++ b/src/case/editor/editor.sign.js @@ -206,11 +206,6 @@ BI.SignEditor = BI.inherit(BI.Widget, { return this.editor.isValid(); }, - setValid: function (v) { - BI.SignEditor.superclass.setValid.apply(this, arguments); - this.editor.setValid(v); - }, - setErrorText: function (text) { this.editor.setErrorText(text); },