Browse Source

_setValid

master
windy 8 years ago
parent
commit
9ebd618bf8
  1. 8
      bi/base.js
  2. 8
      docs/base.js
  3. 8
      src/base/single/editor/editor.textarea.js

8
bi/base.js

@ -18487,10 +18487,10 @@ BI.TextAreaEditor = BI.inherit(BI.Single, {
return this.style; return this.style;
}, },
setValid: function (b) { _setValid: function (b) {
BI.TextAreaEditor.superclass.setValid.apply(this, arguments); BI.TextAreaEditor.superclass._setValid.apply(this, arguments);
this.content.setValid(b); // this.content.setValid(b);
this.watermark && this.watermark.setValid(b); // this.watermark && this.watermark.setValid(b);
} }
}); });
BI.TextAreaEditor.EVENT_CHANGE = "EVENT_CHANGE"; BI.TextAreaEditor.EVENT_CHANGE = "EVENT_CHANGE";

8
docs/base.js

@ -18487,10 +18487,10 @@ BI.TextAreaEditor = BI.inherit(BI.Single, {
return this.style; return this.style;
}, },
setValid: function (b) { _setValid: function (b) {
BI.TextAreaEditor.superclass.setValid.apply(this, arguments); BI.TextAreaEditor.superclass._setValid.apply(this, arguments);
this.content.setValid(b); // this.content.setValid(b);
this.watermark && this.watermark.setValid(b); // this.watermark && this.watermark.setValid(b);
} }
}); });
BI.TextAreaEditor.EVENT_CHANGE = "EVENT_CHANGE"; BI.TextAreaEditor.EVENT_CHANGE = "EVENT_CHANGE";

8
src/base/single/editor/editor.textarea.js

@ -149,10 +149,10 @@ BI.TextAreaEditor = BI.inherit(BI.Single, {
return this.style; return this.style;
}, },
setValid: function (b) { _setValid: function (b) {
BI.TextAreaEditor.superclass.setValid.apply(this, arguments); BI.TextAreaEditor.superclass._setValid.apply(this, arguments);
this.content.setValid(b); // this.content.setValid(b);
this.watermark && this.watermark.setValid(b); // this.watermark && this.watermark.setValid(b);
} }
}); });
BI.TextAreaEditor.EVENT_CHANGE = "EVENT_CHANGE"; BI.TextAreaEditor.EVENT_CHANGE = "EVENT_CHANGE";

Loading…
Cancel
Save