Browse Source

BI-94419 fix:SmallTextValueCombo增加value

es6
Tangjinxia 3 years ago
parent
commit
6e9588f5da
  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