diff --git a/src/widget/multiselect/multiselect.combo.js b/src/widget/multiselect/multiselect.combo.js index 07294aae5..f9f94a9e4 100644 --- a/src/widget/multiselect/multiselect.combo.js +++ b/src/widget/multiselect/multiselect.combo.js @@ -424,7 +424,7 @@ BI.MultiSelectCombo = BI.inherit(BI.Single, { populate: function () { this.combo.populate.apply(this.combo, arguments); - this.numberCounter.populate.apply(this.numberCounter, arguments); + this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments); } }); diff --git a/src/widget/multiselect/multiselect.combo.nobar.js b/src/widget/multiselect/multiselect.combo.nobar.js index 35435a625..79b6a1474 100644 --- a/src/widget/multiselect/multiselect.combo.nobar.js +++ b/src/widget/multiselect/multiselect.combo.nobar.js @@ -420,7 +420,7 @@ BI.MultiSelectNoBarCombo = BI.inherit(BI.Single, { populate: function () { this.combo.populate.apply(this.combo, arguments); - this.numberCounter.populate.apply(this.numberCounter, arguments); + this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments); } }); diff --git a/src/widget/multiselect/multiselect.insert.combo.js b/src/widget/multiselect/multiselect.insert.combo.js index a953ba018..457c4fadf 100644 --- a/src/widget/multiselect/multiselect.insert.combo.js +++ b/src/widget/multiselect/multiselect.insert.combo.js @@ -441,7 +441,7 @@ BI.MultiSelectInsertCombo = BI.inherit(BI.Single, { populate: function () { this.combo.populate.apply(this.combo, arguments); - this.numberCounter.populate.apply(this.numberCounter, arguments); + this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments); } }); diff --git a/src/widget/multiselect/multiselect.insert.combo.nobar.js b/src/widget/multiselect/multiselect.insert.combo.nobar.js index 6f78f79d9..0e39286b1 100644 --- a/src/widget/multiselect/multiselect.insert.combo.nobar.js +++ b/src/widget/multiselect/multiselect.insert.combo.nobar.js @@ -438,7 +438,7 @@ BI.MultiSelectInsertNoBarCombo = BI.inherit(BI.Single, { populate: function () { this.combo.populate.apply(this.combo, arguments); - this.numberCounter.populate.apply(this.numberCounter, arguments); + this.numberCounter.populateSwitcher.apply(this.numberCounter, arguments); } }); diff --git a/src/widget/multiselect/trigger/switcher.checkselected.js b/src/widget/multiselect/trigger/switcher.checkselected.js index 755619d1c..4ca37a0f8 100644 --- a/src/widget/multiselect/trigger/switcher.checkselected.js +++ b/src/widget/multiselect/trigger/switcher.checkselected.js @@ -96,6 +96,10 @@ BI.MultiSelectCheckSelectedSwitcher = BI.inherit(BI.Widget, { populate: function (items) { this.switcher.populate.apply(this.switcher, arguments); + }, + + populateSwitcher: function () { + this.button.populate.apply(this.switcher, arguments); } }); diff --git a/src/widget/numberinterval/numberinterval.js b/src/widget/numberinterval/numberinterval.js index d0cf78f4c..30af17b4d 100644 --- a/src/widget/numberinterval/numberinterval.js +++ b/src/widget/numberinterval/numberinterval.js @@ -80,8 +80,6 @@ BI.NumberInterval = BI.inherit(BI.Single, { watermark: o.watermark, allowBlank: o.allowBlank, value: o.max, - level: "warning", - tipType: "success", title: function () { return self.bigEditor && self.bigEditor.getValue(); }, @@ -113,22 +111,6 @@ BI.NumberInterval = BI.inherit(BI.Single, { right: 5 }] }); - - // this.smallCombo = BI.createWidget({ - // type: "bi.number_interval_combo", - // cls: "number-interval-small-combo", - // height: o.height, - // value: o.closemin ? 1 : 0, - // offsetStyle: "left" - // }); - // - // this.bigCombo = BI.createWidget({ - // type: "bi.number_interval_combo", - // cls: "number-interval-big-combo", - // height: o.height, - // value: o.closemax ? 1 : 0, - // offsetStyle: "left" - // }); this.smallCombo = BI.createWidget({ type: "bi.icon_combo", cls: "number-interval-small-combo bi-border-top bi-border-bottom bi-border-right", @@ -301,10 +283,7 @@ BI.NumberInterval = BI.inherit(BI.Single, { }, _setTitle: function (v) { - var self = this; - self.bigEditor.setTitle(v); - self.smallEditor.setTitle(v); - self.label.setTitle(v); + this.label.setTitle(v); }, _setFocusEvent: function (w) { diff --git a/src/widget/numberinterval/singleeditor/single.editor.js b/src/widget/numberinterval/singleeditor/single.editor.js index 167f72e26..281993c16 100644 --- a/src/widget/numberinterval/singleeditor/single.editor.js +++ b/src/widget/numberinterval/singleeditor/single.editor.js @@ -19,7 +19,6 @@ BI.NumberIntervalSingleEidtor = BI.inherit(BI.Single, { watermark: o.watermark, allowBlank: o.allowBlank, value: o.value, - level: o.level, quitChecker: o.quitChecker, validationChecker: o.validationChecker, listeners: [{ @@ -70,10 +69,6 @@ BI.NumberIntervalSingleEidtor = BI.inherit(BI.Single, { return this.editor.getValue(); }, - setTitle: function (v) { - return this.editor.setTitle(v); - }, - setValue: function (v) { return this.editor.setValue(v); }