|
|
|
@ -44627,6 +44627,10 @@ BI.Editor = BI.inherit(BI.Single, {
|
|
|
|
|
return this.editor.getLastValidValue(); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
getLastChangedValue: function () { |
|
|
|
|
return this.editor.getLastChangedValue(); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
getValue: function () { |
|
|
|
|
if (!this.isValid()) { |
|
|
|
|
return BI.trim(this.editor.getLastValidValue()); |
|
|
|
@ -46125,6 +46129,10 @@ BI.Input = BI.inherit(BI.Single, {
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
getLastValidValue: function () { |
|
|
|
|
return this._lastValidValue; |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
getLastChangedValue: function () { |
|
|
|
|
return this._lastChangedValue; |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
@ -55825,6 +55833,10 @@ BI.ShelterEditor = BI.inherit(BI.Widget, {
|
|
|
|
|
return this.editor.getLastValidValue(); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
getLastChangedValue: function () { |
|
|
|
|
return this.editor.getLastChangedValue(); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
setTextStyle: function (style) { |
|
|
|
|
this.text.setStyle(style); |
|
|
|
|
}, |
|
|
|
@ -56096,6 +56108,10 @@ BI.SignEditor = BI.inherit(BI.Widget, {
|
|
|
|
|
return this.editor.getLastValidValue(); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
getLastChangedValue: function () { |
|
|
|
|
return this.editor.getLastChangedValue(); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
setValue: function (k) { |
|
|
|
|
this.editor.setValue(k); |
|
|
|
|
this._checkText(); |
|
|
|
@ -56350,6 +56366,10 @@ BI.StateEditor = BI.inherit(BI.Widget, {
|
|
|
|
|
return this.editor.getLastValidValue(); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
getLastChangedValue: function () { |
|
|
|
|
return this.editor.getLastChangedValue(); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
setValue: function (k) { |
|
|
|
|
this.editor.setValue(k); |
|
|
|
|
}, |
|
|
|
@ -56625,6 +56645,10 @@ BI.SimpleStateEditor = BI.inherit(BI.Widget, {
|
|
|
|
|
return this.editor.getLastValidValue(); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
getLastChangedValue: function () { |
|
|
|
|
return this.editor.getLastChangedValue(); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
setValue: function (k) { |
|
|
|
|
this.editor.setValue(k); |
|
|
|
|
}, |
|
|
|
@ -64689,7 +64713,7 @@ BI.SearchEditor = BI.inherit(BI.Widget, {
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
getKeywords: function () { |
|
|
|
|
var val = this.editor.getLastValidValue(); |
|
|
|
|
var val = this.editor.getLastChangedValue(); |
|
|
|
|
var keywords = val.match(/[\S]+/g); |
|
|
|
|
if (BI.isEndWithBlank(val)) { |
|
|
|
|
return keywords.concat([" "]); |
|
|
|
@ -64701,6 +64725,10 @@ BI.SearchEditor = BI.inherit(BI.Widget, {
|
|
|
|
|
return this.editor.getLastValidValue(); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
getLastChangedValue: function () { |
|
|
|
|
return this.editor.getLastChangedValue(); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
setValue: function (v) { |
|
|
|
|
this.editor.setValue(v); |
|
|
|
|
if (BI.isKey(v)) { |
|
|
|
@ -70825,7 +70853,7 @@ BI.MultiSelectEditor = BI.inherit(BI.Widget, {
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
getKeywords: function () { |
|
|
|
|
var val = this.editor.getLastValidValue(); |
|
|
|
|
var val = this.editor.getLastChangedValue(); |
|
|
|
|
var keywords = val.match(/[\S]+/g); |
|
|
|
|
if (BI.isEndWithBlank(val)) { |
|
|
|
|
return keywords.concat([" "]); |
|
|
|
@ -78689,7 +78717,7 @@ BI.SingleSelectEditor = BI.inherit(BI.Widget, {
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
getKeywords: function () { |
|
|
|
|
var val = this.editor.getLastValidValue(); |
|
|
|
|
var val = this.editor.getLastChangedValue(); |
|
|
|
|
var keywords = val.match(/[\S]+/g); |
|
|
|
|
if (BI.isEndWithBlank(val)) { |
|
|
|
|
return keywords.concat([" "]); |
|
|
|
@ -79018,6 +79046,10 @@ BI.SignTextEditor = BI.inherit(BI.Widget, {
|
|
|
|
|
return this.editor.getLastValidValue(); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
getLastChangedValue: function () { |
|
|
|
|
return this.editor.getLastChangedValue(); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
setValue: function (v) { |
|
|
|
|
this.editor.setValue(v); |
|
|
|
|
this._checkText(); |
|
|
|
|