|
|
@ -99030,14 +99030,12 @@ BI.MultiSelectSearchInsertPane = BI.inherit(BI.Widget, { |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
this.addNotMatchTip = BI.createWidget({ |
|
|
|
this.addNotMatchTip = BI.createWidget({ |
|
|
|
type: "bi.icon_text_item", |
|
|
|
type: "bi.label", |
|
|
|
invisible: true, |
|
|
|
invisible: true, |
|
|
|
logic: { |
|
|
|
|
|
|
|
dynamic: true |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
text: BI.i18nText("BI-Basic_Click_To_Add_Text", ""), |
|
|
|
text: BI.i18nText("BI-Basic_Click_To_Add_Text", ""), |
|
|
|
cls: "text-add-tip-font", |
|
|
|
|
|
|
|
height: this.constants.height, |
|
|
|
height: this.constants.height, |
|
|
|
|
|
|
|
cls: "bi-high-light", |
|
|
|
|
|
|
|
hgap: 5, |
|
|
|
handler: function () { |
|
|
|
handler: function () { |
|
|
|
self.fireEvent(BI.MultiSelectSearchInsertPane.EVENT_ADD_ITEM, o.keywordGetter()); |
|
|
|
self.fireEvent(BI.MultiSelectSearchInsertPane.EVENT_ADD_ITEM, o.keywordGetter()); |
|
|
|
} |
|
|
|
} |
|
|
@ -99063,13 +99061,29 @@ BI.MultiSelectSearchInsertPane = BI.inherit(BI.Widget, { |
|
|
|
type: "bi.vtape", |
|
|
|
type: "bi.vtape", |
|
|
|
element: this, |
|
|
|
element: this, |
|
|
|
items: [{ |
|
|
|
items: [{ |
|
|
|
type: "bi.float_center_adapt", |
|
|
|
type: "bi.vertical", |
|
|
|
items: [this.tooltipClick, this.addNotMatchTip], |
|
|
|
items: [this.tooltipClick, this.addNotMatchTip], |
|
|
|
height: this.constants.height |
|
|
|
height: this.constants.height |
|
|
|
}, { |
|
|
|
}, { |
|
|
|
el: this.loader |
|
|
|
el: this.loader |
|
|
|
}] |
|
|
|
}] |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
BI.createWidget({ |
|
|
|
|
|
|
|
type: "bi.absolute", |
|
|
|
|
|
|
|
element: this.addNotMatchTip, |
|
|
|
|
|
|
|
items: [{ |
|
|
|
|
|
|
|
el: { |
|
|
|
|
|
|
|
type: "bi.icon_label", |
|
|
|
|
|
|
|
width: this.constants.height, |
|
|
|
|
|
|
|
cls: "text-add-tip-font" |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
left: 0, |
|
|
|
|
|
|
|
top: 0, |
|
|
|
|
|
|
|
height: this.constants.height, |
|
|
|
|
|
|
|
width: this.constants.height |
|
|
|
|
|
|
|
}] |
|
|
|
|
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
setKeyword: function (keyword) { |
|
|
|
setKeyword: function (keyword) { |
|
|
|