Browse Source

Pull request #2204: BI-94419 fix:SmallTextValueCombo增加value

Merge in VISUAL/fineui from ~CLAIRE.TANG/fineui:master to master

* commit 'ed940aa844adf446989d9c1f946dd6eaf96da0d3':
  BI-94419 fix:SmallTextValueCombo增加value
es6
Claire.Tang 3 years ago
parent
commit
fd44372667
  1. 4
      src/case/combo/textvaluecombo/combo.textvaluesmall.js

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

@ -49,6 +49,10 @@ BI.SmallTextValueCombo = BI.inherit(BI.Widget, {
minHeight: 25
}
});
if(BI.isKey(o.value)){
this.setValue(o.value);
}
},
setValue: function (v) {

Loading…
Cancel
Save