guy 7 years ago
parent
commit
474654ba30
  1. 9
      dist/bundle.js
  2. 2
      dist/bundle.min.js
  3. 9
      dist/case.js
  4. 9
      dist/fineui.js
  5. 2
      dist/fineui.min.js
  6. 9
      src/case/combo/staticcombo/combo.static.js

9
dist/bundle.js vendored

@ -68127,10 +68127,11 @@ BI.StaticCombo = BI.inherit(BI.Widget, {
BI.StaticCombo.superclass._init.apply(this, arguments);
var self = this, o = this.options;
this.trigger = BI.createWidget({
type: "bi.select_text_trigger",
type: "bi.text_trigger",
items: o.items,
height: o.height,
text: o.text
text: o.text,
readonly: true
});
this.popup = BI.createWidget({
type: "bi.text_value_combo_popup",
@ -68158,11 +68159,11 @@ BI.StaticCombo = BI.inherit(BI.Widget, {
},
populate: function (items) {
this.popup.populate(items);
this.combo.populate(items);
},
setValue: function (v) {
this.popup.setValue(v);
this.combo.setValue(v);
},
getValue: function () {

2
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

9
dist/case.js vendored

@ -5612,10 +5612,11 @@ BI.StaticCombo = BI.inherit(BI.Widget, {
BI.StaticCombo.superclass._init.apply(this, arguments);
var self = this, o = this.options;
this.trigger = BI.createWidget({
type: "bi.select_text_trigger",
type: "bi.text_trigger",
items: o.items,
height: o.height,
text: o.text
text: o.text,
readonly: true
});
this.popup = BI.createWidget({
type: "bi.text_value_combo_popup",
@ -5643,11 +5644,11 @@ BI.StaticCombo = BI.inherit(BI.Widget, {
},
populate: function (items) {
this.popup.populate(items);
this.combo.populate(items);
},
setValue: function (v) {
this.popup.setValue(v);
this.combo.setValue(v);
},
getValue: function () {

9
dist/fineui.js vendored

@ -69881,10 +69881,11 @@ BI.StaticCombo = BI.inherit(BI.Widget, {
BI.StaticCombo.superclass._init.apply(this, arguments);
var self = this, o = this.options;
this.trigger = BI.createWidget({
type: "bi.select_text_trigger",
type: "bi.text_trigger",
items: o.items,
height: o.height,
text: o.text
text: o.text,
readonly: true
});
this.popup = BI.createWidget({
type: "bi.text_value_combo_popup",
@ -69912,11 +69913,11 @@ BI.StaticCombo = BI.inherit(BI.Widget, {
},
populate: function (items) {
this.popup.populate(items);
this.combo.populate(items);
},
setValue: function (v) {
this.popup.setValue(v);
this.combo.setValue(v);
},
getValue: function () {

2
dist/fineui.min.js vendored

File diff suppressed because one or more lines are too long

9
src/case/combo/staticcombo/combo.static.js

@ -20,10 +20,11 @@ BI.StaticCombo = BI.inherit(BI.Widget, {
BI.StaticCombo.superclass._init.apply(this, arguments);
var self = this, o = this.options;
this.trigger = BI.createWidget({
type: "bi.select_text_trigger",
type: "bi.text_trigger",
items: o.items,
height: o.height,
text: o.text
text: o.text,
readonly: true
});
this.popup = BI.createWidget({
type: "bi.text_value_combo_popup",
@ -51,11 +52,11 @@ BI.StaticCombo = BI.inherit(BI.Widget, {
},
populate: function (items) {
this.popup.populate(items);
this.combo.populate(items);
},
setValue: function (v) {
this.popup.setValue(v);
this.combo.setValue(v);
},
getValue: function () {

Loading…
Cancel
Save