diff --git a/src/case/combo/textvaluecombo/popup.textvalue.js b/src/case/combo/textvaluecombo/popup.textvalue.js index 9ea5eaa58..3f50089af 100644 --- a/src/case/combo/textvaluecombo/popup.textvalue.js +++ b/src/case/combo/textvaluecombo/popup.textvalue.js @@ -8,7 +8,7 @@ BI.TextValueComboPopup = BI.inherit(BI.Pane, { render () { var o = this.options, self = this; - if (o.chooseType === BI.ButtonGroup.CHOOSE_TYPE_SINGLE) { + if (o.chooseType !== BI.ButtonGroup.CHOOSE_TYPE_MULTI) { return { type: "bi.vertical", vgap: 5, @@ -99,7 +99,7 @@ BI.TextValueComboPopup = BI.inherit(BI.Pane, { var o = this.options; return BI.map(items, function (i, item) { return BI.extend({ - type: o.chooseType === BI.ButtonGroup.CHOOSE_TYPE_SINGLE ? "bi.single_select_item" : "bi.multi_select_item", + type: o.chooseType !== BI.ButtonGroup.CHOOSE_TYPE_MULTI ? "bi.single_select_item" : "bi.multi_select_item", iconWrapperWidth: 36, textAlign: o.textAlign, title: item.title || item.text @@ -113,7 +113,7 @@ BI.TextValueComboPopup = BI.inherit(BI.Pane, { }, getValue: function () { - if (this.options.chooseType === BI.ButtonGroup.CHOOSE_TYPE_SINGLE) { + if (this.options.chooseType !== BI.ButtonGroup.CHOOSE_TYPE_MULTI) { return this.popup.getValue(); } var val = this.popup.getValue(); @@ -125,7 +125,7 @@ BI.TextValueComboPopup = BI.inherit(BI.Pane, { }, setValue: function (v) { - if (this.options.chooseType === BI.ButtonGroup.CHOOSE_TYPE_SINGLE) { + if (this.options.chooseType !== BI.ButtonGroup.CHOOSE_TYPE_MULTI) { return this.popup.setValue(v); } this.popup.setValue({