|
|
|
@ -110162,7 +110162,9 @@ BI.AllValueChooserCombo = BI.inherit(BI.AbstractAllValueChooser, {
|
|
|
|
|
return val.value || []; |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
populate: function () { |
|
|
|
|
populate: function (items) { |
|
|
|
|
// 直接用combo的populate不会作用到AbstractValueChooser上
|
|
|
|
|
this.items = items; |
|
|
|
|
this.combo.populate.apply(this, arguments); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
@ -110223,7 +110225,9 @@ BI.AllValueChooserPane = BI.inherit(BI.AbstractAllValueChooser, {
|
|
|
|
|
return val.value || []; |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
populate: function () { |
|
|
|
|
populate: function (items) { |
|
|
|
|
// 直接用combo的populate不会作用到AbstractValueChooser上
|
|
|
|
|
this.items = items; |
|
|
|
|
this.list.populate.apply(this.list, arguments); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
@ -111141,7 +111145,9 @@ BI.ValueChooserCombo = BI.inherit(BI.AbstractValueChooser, {
|
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
populate: function () { |
|
|
|
|
populate: function (items) { |
|
|
|
|
// 直接用combo的populate不会作用到AbstractValueChooser上
|
|
|
|
|
this.items = items; |
|
|
|
|
this.combo.populate.apply(this, arguments); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
@ -111196,7 +111202,9 @@ BI.ValueChooserPane = BI.inherit(BI.AbstractValueChooser, {
|
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
populate: function () { |
|
|
|
|
populate: function (items) { |
|
|
|
|
// 直接用combo的populate不会作用到AbstractValueChooser上
|
|
|
|
|
this.items = items; |
|
|
|
|
this.list.populate.apply(this.list, arguments); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|