Browse Source

根据comment修改

es6
windy 4 years ago
parent
commit
6596dfbee6
  1. 4
      src/component/allvaluechooser/combo.allvaluechooser.js

4
src/component/allvaluechooser/combo.allvaluechooser.js

@ -52,6 +52,10 @@ BI.AllValueChooserCombo = BI.inherit(BI.AbstractAllValueChooser, {
},
getValue: function () {
return this.getAllValue();
},
getAllValue: function () {
var val = this.combo.getValue() || {};
if (val.type === BI.Selection.Multi) {
return val.value || [];

Loading…
Cancel
Save