Browse Source

Revert "Pull request #1427: 无JIRA任务 整理一下"

This reverts commit fdbf1fa5fc, reversing
changes made to a650ff339d.
es6
fay 4 years ago
parent
commit
96170c7d5a
  1. 8
      src/component/allvaluechooser/pane.allvaluechooser.js

8
src/component/allvaluechooser/pane.allvaluechooser.js

@ -22,6 +22,9 @@ BI.AllValueChooserPane = BI.inherit(BI.AbstractAllValueChooser, {
_init: function () {
BI.AllValueChooserPane.superclass._init.apply(this, arguments);
var self = this, o = this.options;
if (BI.isNotNull(o.items)) {
this.items = o.items;
}
this.list = BI.createWidget({
type: "bi.multi_select_list",
element: this,
@ -34,11 +37,6 @@ BI.AllValueChooserPane = BI.inherit(BI.AbstractAllValueChooser, {
this.list.on(BI.MultiSelectList.EVENT_CHANGE, function () {
self.fireEvent(BI.AllValueChooserPane.EVENT_CHANGE);
});
if (BI.isNotNull(o.items)) {
this.items = o.items;
this.list.populate();
}
},
setValue: function (v) {

Loading…
Cancel
Save