|
|
@ -53803,6 +53803,11 @@ BI.IconTextValueComboPopup = BI.inherit(BI.Pane, { |
|
|
|
layouts: [{ |
|
|
|
layouts: [{ |
|
|
|
type: "bi.vertical" |
|
|
|
type: "bi.vertical" |
|
|
|
}], |
|
|
|
}], |
|
|
|
|
|
|
|
behaviors: { |
|
|
|
|
|
|
|
redmark: function () { |
|
|
|
|
|
|
|
return true; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}, |
|
|
|
value: o.value |
|
|
|
value: o.value |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
@ -53821,7 +53826,7 @@ BI.IconTextValueComboPopup = BI.inherit(BI.Pane, { |
|
|
|
}); |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
populate: function (items) { |
|
|
|
populate: function (items, keyword) { |
|
|
|
BI.IconTextValueComboPopup.superclass.populate.apply(this, arguments); |
|
|
|
BI.IconTextValueComboPopup.superclass.populate.apply(this, arguments); |
|
|
|
var o = this.options; |
|
|
|
var o = this.options; |
|
|
|
items = BI.createItems(items, { |
|
|
|
items = BI.createItems(items, { |
|
|
@ -53831,7 +53836,7 @@ BI.IconTextValueComboPopup = BI.inherit(BI.Pane, { |
|
|
|
iconHeight: o.iconHeight, |
|
|
|
iconHeight: o.iconHeight, |
|
|
|
iconWidth: o.iconWidth |
|
|
|
iconWidth: o.iconWidth |
|
|
|
}); |
|
|
|
}); |
|
|
|
this.popup.populate(items); |
|
|
|
this.popup.populate(items, keyword); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
getValue: function () { |
|
|
|
getValue: function () { |
|
|
@ -53844,7 +53849,8 @@ BI.IconTextValueComboPopup = BI.inherit(BI.Pane, { |
|
|
|
|
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
BI.IconTextValueComboPopup.EVENT_CHANGE = "EVENT_CHANGE"; |
|
|
|
BI.IconTextValueComboPopup.EVENT_CHANGE = "EVENT_CHANGE"; |
|
|
|
BI.shortcut("bi.icon_text_value_combo_popup", BI.IconTextValueComboPopup);/** |
|
|
|
BI.shortcut("bi.icon_text_value_combo_popup", BI.IconTextValueComboPopup); |
|
|
|
|
|
|
|
/** |
|
|
|
* Created by Windy on 2018/2/2. |
|
|
|
* Created by Windy on 2018/2/2. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
BI.SearchTextValueCombo = BI.inherit(BI.Widget, { |
|
|
|
BI.SearchTextValueCombo = BI.inherit(BI.Widget, { |
|
|
|