Browse Source

valuechooserpane无法保存

es6
windy 6 years ago
parent
commit
91180a13e8
  1. 3
      dist/bundle.js
  2. 3
      dist/fineui.js
  3. 3
      dist/widget.js
  4. 3
      src/component/valuechooser/pane.valuechooser.js

3
dist/bundle.js vendored

@ -111708,8 +111708,7 @@ BI.ValueChooserPane = BI.inherit(BI.AbstractValueChooser, {
self.fireEvent(BI.ValueChooserPane.EVENT_CHANGE);
});
if (BI.isNotNull(o.items)) {
this.items = o.items;
this.populate();
this.populate(o.items);
}
},

3
dist/fineui.js vendored

@ -111951,8 +111951,7 @@ BI.ValueChooserPane = BI.inherit(BI.AbstractValueChooser, {
self.fireEvent(BI.ValueChooserPane.EVENT_CHANGE);
});
if (BI.isNotNull(o.items)) {
this.items = o.items;
this.populate();
this.populate(o.items);
}
},

3
dist/widget.js vendored

@ -24192,8 +24192,7 @@ BI.ValueChooserPane = BI.inherit(BI.AbstractValueChooser, {
self.fireEvent(BI.ValueChooserPane.EVENT_CHANGE);
});
if (BI.isNotNull(o.items)) {
this.items = o.items;
this.populate();
this.populate(o.items);
}
},

3
src/component/valuechooser/pane.valuechooser.js

@ -31,8 +31,7 @@ BI.ValueChooserPane = BI.inherit(BI.AbstractValueChooser, {
self.fireEvent(BI.ValueChooserPane.EVENT_CHANGE);
});
if (BI.isNotNull(o.items)) {
this.items = o.items;
this.populate();
this.populate(o.items);
}
},

Loading…
Cancel
Save