|
|
|
@ -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"); |
|
|
|
|