@ -62,7 +62,7 @@ BI.AllValueChooserCombo = BI.inherit(BI.AbstractAllValueChooser, {
populate: function (items) {
// 直接用combo的populate不会作用到AbstractValueChooser上
this.items = items;
this.combo.populate.apply(this.combo, arguments);
this.combo.populate();
}
});
BI.AllValueChooserCombo.EVENT_CONFIRM = "EVENT_CONFIRM";
@ -57,7 +57,7 @@ BI.AllValueChooserPane = BI.inherit(BI.AbstractAllValueChooser, {
this.list.populate.apply(this.list, arguments);
this.list.populate();
BI.AllValueChooserPane.EVENT_CHANGE = "EVENT_CHANGE";
@ -89,7 +89,7 @@ BI.ValueChooserInsertCombo = BI.inherit(BI.AbstractValueChooser, {
@ -93,7 +93,7 @@ BI.ValueChooserCombo = BI.inherit(BI.AbstractValueChooser, {
@ -61,7 +61,7 @@ BI.ValueChooserPane = BI.inherit(BI.AbstractValueChooser, {
items && (this.items = items);
BI.ValueChooserPane.EVENT_CHANGE = "EVENT_CHANGE";