|
|
@ -67090,7 +67090,7 @@ BI.StaticCombo = BI.inherit(BI.Widget, { |
|
|
|
el: {}, |
|
|
|
el: {}, |
|
|
|
items: [], |
|
|
|
items: [], |
|
|
|
chooseType: BI.ButtonGroup.CHOOSE_TYPE_SINGLE |
|
|
|
chooseType: BI.ButtonGroup.CHOOSE_TYPE_SINGLE |
|
|
|
}) |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
_init: function () { |
|
|
|
_init: function () { |
|
|
@ -67126,9 +67126,6 @@ BI.StaticCombo = BI.inherit(BI.Widget, { |
|
|
|
el: this.popup |
|
|
|
el: this.popup |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
if (BI.isKey(o.text)) { |
|
|
|
|
|
|
|
this.setValue(o.text); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
populate: function (items) { |
|
|
|
populate: function (items) { |
|
|
@ -67352,7 +67349,7 @@ BI.TextValueCombo = BI.inherit(BI.Widget, { |
|
|
|
chooseType: BI.ButtonGroup.CHOOSE_TYPE_SINGLE, |
|
|
|
chooseType: BI.ButtonGroup.CHOOSE_TYPE_SINGLE, |
|
|
|
text: "", |
|
|
|
text: "", |
|
|
|
el: {} |
|
|
|
el: {} |
|
|
|
}) |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
_init: function () { |
|
|
|
_init: function () { |
|
|
@ -67361,8 +67358,7 @@ BI.TextValueCombo = BI.inherit(BI.Widget, { |
|
|
|
this.trigger = BI.createWidget(o.el, { |
|
|
|
this.trigger = BI.createWidget(o.el, { |
|
|
|
type: "bi.select_text_trigger", |
|
|
|
type: "bi.select_text_trigger", |
|
|
|
items: o.items, |
|
|
|
items: o.items, |
|
|
|
height: o.height, |
|
|
|
height: o.height |
|
|
|
text: o.text |
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
this.popup = BI.createWidget({ |
|
|
|
this.popup = BI.createWidget({ |
|
|
|
type: "bi.text_value_combo_popup", |
|
|
|
type: "bi.text_value_combo_popup", |
|
|
@ -67387,6 +67383,9 @@ BI.TextValueCombo = BI.inherit(BI.Widget, { |
|
|
|
maxHeight: 300 |
|
|
|
maxHeight: 300 |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
if (BI.isKey(o.text)) { |
|
|
|
|
|
|
|
this.setValue(o.text); |
|
|
|
|
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
setValue: function (v) { |
|
|
|
setValue: function (v) { |
|
|
@ -75348,6 +75347,9 @@ BI.SelectTextTrigger = BI.inherit(BI.Trigger, { |
|
|
|
element: this, |
|
|
|
element: this, |
|
|
|
height: o.height |
|
|
|
height: o.height |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
if (BI.isKey(o.text)) { |
|
|
|
|
|
|
|
this.setValue(o.text); |
|
|
|
|
|
|
|
} |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
setValue: function (vals) { |
|
|
|
setValue: function (vals) { |
|
|
|