|
|
|
@ -110148,7 +110148,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); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
@ -110209,7 +110211,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); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
@ -111127,7 +111131,9 @@ BI.ValueChooserCombo = BI.inherit(BI.AbstractValueChooser, {
|
|
|
|
|
}; |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
populate: function () { |
|
|
|
|
populate: function (items) { |
|
|
|
|
// 直接用combo的populate不会作用到AbstractValueChooser上
|
|
|
|
|
this.items = items; |
|
|
|
|
this.combo.populate.apply(this, arguments); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
@ -111183,6 +111189,8 @@ BI.ValueChooserPane = BI.inherit(BI.AbstractValueChooser, {
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
populate: function () { |
|
|
|
|
// 直接用combo的populate不会作用到AbstractValueChooser上
|
|
|
|
|
this.items = items; |
|
|
|
|
this.list.populate.apply(this.list, arguments); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|