windy 6 years ago
parent
commit
d2b9edb256
  1. 4
      dist/_fineui.min.js
  2. 4
      dist/bundle.js
  3. 4
      dist/bundle.min.js
  4. 4
      dist/case.js
  5. 4
      dist/fineui.js
  6. 4
      dist/fineui.min.js
  7. 2
      src/case/combo/searchtextvaluecombo/trigger.searchtextvalue.js
  8. 2
      src/case/editor/editor.state.js

4
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/bundle.js vendored

@ -79015,7 +79015,7 @@ BI.SearchTextValueTrigger = BI.inherit(BI.Trigger, {
text: this._digest(o.value, o.items),
value: o.value,
height: o.height,
title: ""
tipText: ""
},
popup: {
type: "bi.search_text_value_combo_popup",
@ -80743,7 +80743,7 @@ BI.StateEditor = BI.inherit(BI.Widget, {
self.editor.focus();
self.editor.setValue("");
},
title: BI.isNotNull(o.title) ? o.title : function () {
title: BI.isNotNull(o.tipText) ? o.tipText : function () {
var title = "";
if (BI.isString(self.stateValue)) {
title = self.stateValue;

4
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

4
dist/case.js vendored

@ -6335,7 +6335,7 @@ BI.SearchTextValueTrigger = BI.inherit(BI.Trigger, {
text: this._digest(o.value, o.items),
value: o.value,
height: o.height,
title: ""
tipText: ""
},
popup: {
type: "bi.search_text_value_combo_popup",
@ -8063,7 +8063,7 @@ BI.StateEditor = BI.inherit(BI.Widget, {
self.editor.focus();
self.editor.setValue("");
},
title: BI.isNotNull(o.title) ? o.title : function () {
title: BI.isNotNull(o.tipText) ? o.tipText : function () {
var title = "";
if (BI.isString(self.stateValue)) {
title = self.stateValue;

4
dist/fineui.js vendored

@ -79236,7 +79236,7 @@ BI.SearchTextValueTrigger = BI.inherit(BI.Trigger, {
text: this._digest(o.value, o.items),
value: o.value,
height: o.height,
title: ""
tipText: ""
},
popup: {
type: "bi.search_text_value_combo_popup",
@ -80964,7 +80964,7 @@ BI.StateEditor = BI.inherit(BI.Widget, {
self.editor.focus();
self.editor.setValue("");
},
title: BI.isNotNull(o.title) ? o.title : function () {
title: BI.isNotNull(o.tipText) ? o.tipText : function () {
var title = "";
if (BI.isString(self.stateValue)) {
title = self.stateValue;

4
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

2
src/case/combo/searchtextvaluecombo/trigger.searchtextvalue.js

@ -28,7 +28,7 @@ BI.SearchTextValueTrigger = BI.inherit(BI.Trigger, {
text: this._digest(o.value, o.items),
value: o.value,
height: o.height,
title: ""
tipText: ""
},
popup: {
type: "bi.search_text_value_combo_popup",

2
src/case/editor/editor.state.js

@ -56,7 +56,7 @@ BI.StateEditor = BI.inherit(BI.Widget, {
self.editor.focus();
self.editor.setValue("");
},
title: BI.isNotNull(o.title) ? o.title : function () {
title: BI.isNotNull(o.tipText) ? o.tipText : function () {
var title = "";
if (BI.isString(self.stateValue)) {
title = self.stateValue;

Loading…
Cancel
Save