guy 6 years ago
parent
commit
26d35391c2
  1. 10
      dist/_fineui.min.js
  2. 7
      dist/bundle.js
  3. 16
      dist/bundle.min.js
  4. 7
      dist/fineui.js
  5. 10
      dist/fineui.min.js
  6. 7
      dist/widget.js
  7. 6
      src/component/valuechooser/pane.valuechooser.js
  8. 1
      src/widget/multiselect/multiselect.loader.js

10
dist/_fineui.min.js vendored

File diff suppressed because one or more lines are too long

7
dist/bundle.js vendored

@ -98236,6 +98236,7 @@ BI.MultiSelectLoader = BI.inherit(BI.Widget, {
},
populate: function (items) {
arguments[0] = this._createItems(items);
this.button_group.populate.apply(this.button_group, arguments);
},
@ -111782,6 +111783,9 @@ BI.ValueChooserPane = BI.inherit(BI.AbstractValueChooser, {
_init: function () {
BI.ValueChooserPane.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,
@ -111792,9 +111796,6 @@ BI.ValueChooserPane = BI.inherit(BI.AbstractValueChooser, {
this.list.on(BI.MultiSelectList.EVENT_CHANGE, function () {
self.fireEvent(BI.ValueChooserPane.EVENT_CHANGE);
});
if (BI.isNotNull(o.items)) {
this.populate(o.items);
}
},
setValue: function (v) {

16
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

7
dist/fineui.js vendored

@ -98479,6 +98479,7 @@ BI.MultiSelectLoader = BI.inherit(BI.Widget, {
},
populate: function (items) {
arguments[0] = this._createItems(items);
this.button_group.populate.apply(this.button_group, arguments);
},
@ -112025,6 +112026,9 @@ BI.ValueChooserPane = BI.inherit(BI.AbstractValueChooser, {
_init: function () {
BI.ValueChooserPane.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,
@ -112035,9 +112039,6 @@ BI.ValueChooserPane = BI.inherit(BI.AbstractValueChooser, {
this.list.on(BI.MultiSelectList.EVENT_CHANGE, function () {
self.fireEvent(BI.ValueChooserPane.EVENT_CHANGE);
});
if (BI.isNotNull(o.items)) {
this.populate(o.items);
}
},
setValue: function (v) {

10
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

7
dist/widget.js vendored

@ -10676,6 +10676,7 @@ BI.MultiSelectLoader = BI.inherit(BI.Widget, {
},
populate: function (items) {
arguments[0] = this._createItems(items);
this.button_group.populate.apply(this.button_group, arguments);
},
@ -24222,6 +24223,9 @@ BI.ValueChooserPane = BI.inherit(BI.AbstractValueChooser, {
_init: function () {
BI.ValueChooserPane.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,
@ -24232,9 +24236,6 @@ BI.ValueChooserPane = BI.inherit(BI.AbstractValueChooser, {
this.list.on(BI.MultiSelectList.EVENT_CHANGE, function () {
self.fireEvent(BI.ValueChooserPane.EVENT_CHANGE);
});
if (BI.isNotNull(o.items)) {
this.populate(o.items);
}
},
setValue: function (v) {

6
src/component/valuechooser/pane.valuechooser.js

@ -20,6 +20,9 @@ BI.ValueChooserPane = BI.inherit(BI.AbstractValueChooser, {
_init: function () {
BI.ValueChooserPane.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,
@ -30,9 +33,6 @@ BI.ValueChooserPane = BI.inherit(BI.AbstractValueChooser, {
this.list.on(BI.MultiSelectList.EVENT_CHANGE, function () {
self.fireEvent(BI.ValueChooserPane.EVENT_CHANGE);
});
if (BI.isNotNull(o.items)) {
this.populate(o.items);
}
},
setValue: function (v) {

1
src/widget/multiselect/multiselect.loader.js

@ -156,6 +156,7 @@ BI.MultiSelectLoader = BI.inherit(BI.Widget, {
},
populate: function (items) {
arguments[0] = this._createItems(items);
this.button_group.populate.apply(this.button_group, arguments);
},

Loading…
Cancel
Save