Browse Source

BI-17924 formulaeditor支持默认value

es6
windy 7 years ago
parent
commit
059b675f18
  1. 3
      dist/base.js
  2. 3
      dist/bundle.js
  3. 66
      dist/bundle.min.js
  4. 3
      dist/fineui.min.js
  5. 3
      src/base/formula/formulaeditor.js

3
dist/base.js vendored

@ -14606,6 +14606,9 @@ BI.FormulaEditor = BI.inherit(BI.Single, {
bottom: 0 bottom: 0
}); });
} }
if(BI.isNotNull(o.value)) {
this.setValue(o.value);
}
}, },
_checkWaterMark: function () { _checkWaterMark: function () {

3
dist/bundle.js vendored

@ -49860,6 +49860,9 @@ BI.FormulaEditor = BI.inherit(BI.Single, {
bottom: 0 bottom: 0
}); });
} }
if(BI.isNotNull(o.value)) {
this.setValue(o.value);
}
}, },
_checkWaterMark: function () { _checkWaterMark: function () {

66
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

3
dist/fineui.min.js vendored

@ -140,6 +140,9 @@ BI.FormulaEditor = BI.inherit(BI.Single, {
bottom: 0 bottom: 0
}); });
} }
if(BI.isNotNull(o.value)) {
this.setValue(o.value);
}
}, },
_checkWaterMark: function () { _checkWaterMark: function () {

3
src/base/formula/formulaeditor.js

@ -88,6 +88,9 @@ BI.FormulaEditor = BI.inherit(BI.Single, {
bottom: 0 bottom: 0
}); });
} }
if(BI.isNotNull(o.value)) {
this.setValue(o.value);
}
}, },
_checkWaterMark: function () { _checkWaterMark: function () {

Loading…
Cancel
Save