|
|
@ -6946,6 +6946,8 @@ BI.SignInitialEditor = BI.inherit(BI.Widget, { |
|
|
|
value: o.value || o.text, |
|
|
|
value: o.value || o.text, |
|
|
|
validationChecker: o.validationChecker, |
|
|
|
validationChecker: o.validationChecker, |
|
|
|
quitChecker: o.quitChecker, |
|
|
|
quitChecker: o.quitChecker, |
|
|
|
|
|
|
|
title: o.title, |
|
|
|
|
|
|
|
warningTitle: o.warningTitle, |
|
|
|
mouseOut: o.mouseOut, |
|
|
|
mouseOut: o.mouseOut, |
|
|
|
allowBlank: o.allowBlank, |
|
|
|
allowBlank: o.allowBlank, |
|
|
|
watermark: o.watermark, |
|
|
|
watermark: o.watermark, |
|
|
@ -7018,6 +7020,14 @@ BI.SignInitialEditor = BI.inherit(BI.Widget, { |
|
|
|
return this.editor.isValid(); |
|
|
|
return this.editor.isValid(); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setTitle: function (title) { |
|
|
|
|
|
|
|
this.editor.setTitle(title); |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setWarningTitle: function (title) { |
|
|
|
|
|
|
|
this.editor.setWarningTitle(title); |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
setErrorText: function (text) { |
|
|
|
setErrorText: function (text) { |
|
|
|
this.editor.setErrorText(text); |
|
|
|
this.editor.setErrorText(text); |
|
|
|
}, |
|
|
|
}, |
|
|
|