|
|
|
@ -35,7 +35,7 @@ BI.SearchMultiTextValueCombo = BI.inherit(BI.Single, {
|
|
|
|
|
this.trigger = BI.createWidget({ |
|
|
|
|
type: "bi.search_multi_select_trigger", |
|
|
|
|
text: o.text, |
|
|
|
|
height: o.height - 2, |
|
|
|
|
height: o.height - (o.simple ? 1 : 2), |
|
|
|
|
// adapter: this.popup,
|
|
|
|
|
masker: { |
|
|
|
|
offset: { |
|
|
|
@ -111,7 +111,7 @@ BI.SearchMultiTextValueCombo = BI.inherit(BI.Single, {
|
|
|
|
|
|
|
|
|
|
this.combo = BI.createWidget({ |
|
|
|
|
type: "bi.combo", |
|
|
|
|
cls: "bi-border bi-border-radius", |
|
|
|
|
cls: o.simple ? "bi-border-bottom" : "bi-border bi-border-radius", |
|
|
|
|
toggle: false, |
|
|
|
|
container: o.container, |
|
|
|
|
el: this.trigger, |
|
|
|
|