guy 7 years ago
parent
commit
521988399a
  1. 6
      dist/base.js
  2. 6
      dist/bundle.js
  3. 8
      dist/bundle.min.js
  4. 6
      dist/fineui.js
  5. 36
      dist/fineui.min.js
  6. 6
      src/base/combination/group.virtual.js

6
dist/base.js vendored

@ -3802,7 +3802,11 @@ BI.shortcut("bi.combo_group", BI.ComboGroup);BI.VirtualGroup = BI.inherit(BI.Wid
},
render: function () {
this.populate(this.options.items);
var o = this.options;
this.populate(o.items);
if (BI.isKey(o.value)) {
this.setValue(o.value);
}
},
_packageBtns: function (items) {

6
dist/bundle.js vendored

@ -29841,7 +29841,11 @@ BI.shortcut("bi.combo_group", BI.ComboGroup);BI.VirtualGroup = BI.inherit(BI.Wid
},
render: function () {
this.populate(this.options.items);
var o = this.options;
this.populate(o.items);
if (BI.isKey(o.value)) {
this.setValue(o.value);
}
},
_packageBtns: function (items) {

8
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

6
dist/fineui.js vendored

@ -31595,7 +31595,11 @@ BI.shortcut("bi.combo_group", BI.ComboGroup);BI.VirtualGroup = BI.inherit(BI.Wid
},
render: function () {
this.populate(this.options.items);
var o = this.options;
this.populate(o.items);
if (BI.isKey(o.value)) {
this.setValue(o.value);
}
},
_packageBtns: function (items) {

36
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

6
src/base/combination/group.virtual.js

@ -12,7 +12,11 @@ BI.VirtualGroup = BI.inherit(BI.Widget, {
},
render: function () {
this.populate(this.options.items);
var o = this.options;
this.populate(o.items);
if (BI.isKey(o.value)) {
this.setValue(o.value);
}
},
_packageBtns: function (items) {

Loading…
Cancel
Save