guy 7 years ago
parent
commit
7890f759bf
  1. 6
      bi/case.js
  2. 6
      dist/bundle.js
  3. 12
      dist/bundle.min.js
  4. 6
      dist/case.js
  5. 5
      src/case/combo/staticcombo/combo.static.js
  6. 3
      src/case/trigger/trigger.text.select.js

6
bi/case.js

@ -5623,6 +5623,9 @@ BI.StaticCombo = BI.inherit(BI.Widget, {
el: this.popup
}
});
if (BI.isKey(o.text)) {
this.setValue(o.text);
}
},
populate: function (items) {
@ -13842,9 +13845,6 @@ BI.SelectTextTrigger = BI.inherit(BI.Trigger, {
element: this,
height: o.height
});
if (BI.isKey(o.text)) {
this.setValue(o.text);
}
},
setValue: function (vals) {

6
dist/bundle.js vendored

@ -67126,6 +67126,9 @@ BI.StaticCombo = BI.inherit(BI.Widget, {
el: this.popup
}
});
if (BI.isKey(o.text)) {
this.setValue(o.text);
}
},
populate: function (items) {
@ -75345,9 +75348,6 @@ BI.SelectTextTrigger = BI.inherit(BI.Trigger, {
element: this,
height: o.height
});
if (BI.isKey(o.text)) {
this.setValue(o.text);
}
},
setValue: function (vals) {

12
dist/bundle.min.js vendored

File diff suppressed because one or more lines are too long

6
dist/case.js vendored

@ -5623,6 +5623,9 @@ BI.StaticCombo = BI.inherit(BI.Widget, {
el: this.popup
}
});
if (BI.isKey(o.text)) {
this.setValue(o.text);
}
},
populate: function (items) {
@ -13842,9 +13845,6 @@ BI.SelectTextTrigger = BI.inherit(BI.Trigger, {
element: this,
height: o.height
});
if (BI.isKey(o.text)) {
this.setValue(o.text);
}
},
setValue: function (vals) {

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

@ -13,7 +13,7 @@ BI.StaticCombo = BI.inherit(BI.Widget, {
el: {},
items: [],
chooseType: BI.ButtonGroup.CHOOSE_TYPE_SINGLE
})
});
},
_init: function () {
@ -49,6 +49,9 @@ BI.StaticCombo = BI.inherit(BI.Widget, {
el: this.popup
}
});
if (BI.isKey(o.text)) {
this.setValue(o.text);
}
},
populate: function (items) {

3
src/case/trigger/trigger.text.select.js

@ -23,9 +23,6 @@ BI.SelectTextTrigger = BI.inherit(BI.Trigger, {
element: this,
height: o.height
});
if (BI.isKey(o.text)) {
this.setValue(o.text);
}
},
setValue: function (vals) {

Loading…
Cancel
Save