|
|
|
@ -6159,7 +6159,7 @@ BI.StateEditor = BI.inherit(BI.Single, {
|
|
|
|
|
cls: "state-editor-infinite-text bi-disabled", |
|
|
|
|
textAlign: "left", |
|
|
|
|
height: o.height, |
|
|
|
|
text: BI.i18nText("BI-Unrestricted"), |
|
|
|
|
text: BI.i18nText("BI-Basic_Unrestricted"), |
|
|
|
|
hgap: 4, |
|
|
|
|
handler: function () { |
|
|
|
|
self._showInput(); |
|
|
|
@ -6335,7 +6335,7 @@ BI.StateEditor = BI.inherit(BI.Single, {
|
|
|
|
|
this.text.setTitle(""); |
|
|
|
|
this.text.element.removeClass("state-editor-infinite-text"); |
|
|
|
|
} else { |
|
|
|
|
this.text.setText(BI.i18nText("BI-Unrestricted")); |
|
|
|
|
this.text.setText(BI.i18nText("BI-Basic_Unrestricted")); |
|
|
|
|
this.text.setTitle(""); |
|
|
|
|
this.text.element.addClass("state-editor-infinite-text"); |
|
|
|
|
} |
|
|
|
@ -6343,7 +6343,7 @@ BI.StateEditor = BI.inherit(BI.Single, {
|
|
|
|
|
} |
|
|
|
|
if (BI.isString(v)) { |
|
|
|
|
if (BI.isEmpty(v)) { |
|
|
|
|
this.text.setText(BI.i18nText("BI-Unrestricted")); |
|
|
|
|
this.text.setText(BI.i18nText("BI-Basic_Unrestricted")); |
|
|
|
|
this.text.setTitle(""); |
|
|
|
|
this.text.element.addClass("state-editor-infinite-text"); |
|
|
|
|
} else { |
|
|
|
@ -6355,7 +6355,7 @@ BI.StateEditor = BI.inherit(BI.Single, {
|
|
|
|
|
} |
|
|
|
|
if (BI.isArray(v)) { |
|
|
|
|
if (BI.isEmpty(v)) { |
|
|
|
|
this.text.setText(BI.i18nText("BI-Unrestricted")); |
|
|
|
|
this.text.setText(BI.i18nText("BI-Basic_Unrestricted")); |
|
|
|
|
this.text.element.addClass("state-editor-infinite-text"); |
|
|
|
|
} else if (v.length === 1) { |
|
|
|
|
this.text.setText(v[0]); |
|
|
|
@ -6439,7 +6439,7 @@ BI.SimpleStateEditor = BI.inherit(BI.Single, {
|
|
|
|
|
cls: "state-editor-infinite-text bi-disabled", |
|
|
|
|
textAlign: "left", |
|
|
|
|
height: o.height, |
|
|
|
|
text: BI.i18nText("BI-Unrestricted"), |
|
|
|
|
text: BI.i18nText("BI-Basic_Unrestricted"), |
|
|
|
|
hgap: 4, |
|
|
|
|
handler: function () { |
|
|
|
|
self._showInput(); |
|
|
|
@ -6611,7 +6611,7 @@ BI.SimpleStateEditor = BI.inherit(BI.Single, {
|
|
|
|
|
this.text.setText(BI.i18nText("BI-Already_Selected")); |
|
|
|
|
this.text.element.removeClass("state-editor-infinite-text"); |
|
|
|
|
} else { |
|
|
|
|
this.text.setText(BI.i18nText("BI-Unrestricted")); |
|
|
|
|
this.text.setText(BI.i18nText("BI-Basic_Unrestricted")); |
|
|
|
|
this.text.element.addClass("state-editor-infinite-text"); |
|
|
|
|
} |
|
|
|
|
return; |
|
|
|
@ -6621,7 +6621,7 @@ BI.SimpleStateEditor = BI.inherit(BI.Single, {
|
|
|
|
|
this.text.setTitle(v); |
|
|
|
|
this.text.element.removeClass("state-editor-infinite-text"); |
|
|
|
|
} else if (BI.isEmpty(v)) { |
|
|
|
|
this.text.setText(BI.i18nText("BI-Unrestricted")); |
|
|
|
|
this.text.setText(BI.i18nText("BI-Basic_Unrestricted")); |
|
|
|
|
this.text.element.addClass("state-editor-infinite-text"); |
|
|
|
|
} else { |
|
|
|
|
this.text.setText(BI.i18nText("BI-Already_Selected")); |
|
|
|
|