Browse Source

Pull request #2840: 无JIRA任务 simple

Merge in VISUAL/fineui from ~WINDY/fui:master to master

* commit '55d569f896418c0d8f208f655b3c745ff684729a':
  无JIRA任务 simple
es6
windy 2 years ago
parent
commit
84c364301f
  1. 4
      src/case/combo/textvaluecombo/combo.textvalue.js

4
src/case/combo/textvaluecombo/combo.textvalue.js

@ -18,8 +18,8 @@ BI.TextValueCombo = BI.inherit(BI.Widget, {
_init: function () {
var self = this, o = this.options;
BI.isNumeric(o.width) && (o.width -= 2);
BI.isNumeric(o.height) && (o.height -= 2);
BI.isNumeric(o.width) && (o.width -= (o.simple ? 0 : 2));
BI.isNumeric(o.height) && (o.height -= (o.simple ? 1 : 2));
o.value = BI.isFunction(o.value) ? this.__watch(o.value, function (context, newValue) {
self.setValue(newValue);
}) : o.value;

Loading…
Cancel
Save