Browse Source

BI-22367

es6
windy 6 years ago
parent
commit
31e9c07bac
  1. 6
      dist/bundle.js
  2. 6
      dist/fineui.js
  3. 6
      dist/widget.js
  4. 6
      src/widget/multiselect/multiselect.loader.nobar.js

6
dist/bundle.js vendored

@ -98746,7 +98746,7 @@ BI.MultiSelectNoBarLoader = BI.inherit(BI.Widget, {
this.storeValue = opts.value || {};
this._assertValue(this.storeValue);
this.button_group = BI.createWidget({
this.button_group = BI.createWidget(BI.extend({
type: "bi.list_pane",
element: this,
onLoaded: opts.onLoaded,
@ -98811,9 +98811,7 @@ BI.MultiSelectNoBarLoader = BI.inherit(BI.Widget, {
return hasNext;
},
value: this.storeValue
}, {
el: opts.el
});
}, opts.el));
this.button_group.on(BI.Controller.EVENT_CHANGE, function () {
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments);
});

6
dist/fineui.js vendored

@ -98989,7 +98989,7 @@ BI.MultiSelectNoBarLoader = BI.inherit(BI.Widget, {
this.storeValue = opts.value || {};
this._assertValue(this.storeValue);
this.button_group = BI.createWidget({
this.button_group = BI.createWidget(BI.extend({
type: "bi.list_pane",
element: this,
onLoaded: opts.onLoaded,
@ -99054,9 +99054,7 @@ BI.MultiSelectNoBarLoader = BI.inherit(BI.Widget, {
return hasNext;
},
value: this.storeValue
}, {
el: opts.el
});
}, opts.el));
this.button_group.on(BI.Controller.EVENT_CHANGE, function () {
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments);
});

6
dist/widget.js vendored

@ -11167,7 +11167,7 @@ BI.MultiSelectNoBarLoader = BI.inherit(BI.Widget, {
this.storeValue = opts.value || {};
this._assertValue(this.storeValue);
this.button_group = BI.createWidget({
this.button_group = BI.createWidget(BI.extend({
type: "bi.list_pane",
element: this,
onLoaded: opts.onLoaded,
@ -11232,9 +11232,7 @@ BI.MultiSelectNoBarLoader = BI.inherit(BI.Widget, {
return hasNext;
},
value: this.storeValue
}, {
el: opts.el
});
}, opts.el));
this.button_group.on(BI.Controller.EVENT_CHANGE, function () {
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments);
});

6
src/widget/multiselect/multiselect.loader.nobar.js

@ -30,7 +30,7 @@ BI.MultiSelectNoBarLoader = BI.inherit(BI.Widget, {
this.storeValue = opts.value || {};
this._assertValue(this.storeValue);
this.button_group = BI.createWidget({
this.button_group = BI.createWidget(BI.extend({
type: "bi.list_pane",
element: this,
onLoaded: opts.onLoaded,
@ -95,9 +95,7 @@ BI.MultiSelectNoBarLoader = BI.inherit(BI.Widget, {
return hasNext;
},
value: this.storeValue
}, {
el: opts.el
});
}, opts.el));
this.button_group.on(BI.Controller.EVENT_CHANGE, function () {
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments);
});

Loading…
Cancel
Save