|
|
@ -71245,6 +71245,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, { |
|
|
|
_defaultConfig: function () { |
|
|
|
_defaultConfig: function () { |
|
|
|
return BI.extend(BI.MultiSelectList.superclass._defaultConfig.apply(this, arguments), { |
|
|
|
return BI.extend(BI.MultiSelectList.superclass._defaultConfig.apply(this, arguments), { |
|
|
|
baseCls: "bi-multi-select-list", |
|
|
|
baseCls: "bi-multi-select-list", |
|
|
|
|
|
|
|
height: 24, |
|
|
|
itemsCreator: BI.emptyFn, |
|
|
|
itemsCreator: BI.emptyFn, |
|
|
|
valueFormatter: BI.emptyFn |
|
|
|
valueFormatter: BI.emptyFn |
|
|
|
}); |
|
|
|
}); |
|
|
@ -71383,7 +71384,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, { |
|
|
|
element: this, |
|
|
|
element: this, |
|
|
|
items: [{ |
|
|
|
items: [{ |
|
|
|
el: this.trigger, |
|
|
|
el: this.trigger, |
|
|
|
height: 24 |
|
|
|
height: o.height |
|
|
|
}, { |
|
|
|
}, { |
|
|
|
el: this.adapter, |
|
|
|
el: this.adapter, |
|
|
|
height: "fill" |
|
|
|
height: "fill" |
|
|
@ -71394,7 +71395,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, { |
|
|
|
element: this, |
|
|
|
element: this, |
|
|
|
items: [{ |
|
|
|
items: [{ |
|
|
|
el: this.searcherPane, |
|
|
|
el: this.searcherPane, |
|
|
|
top: 30, |
|
|
|
top: o.height, |
|
|
|
bottom: 0, |
|
|
|
bottom: 0, |
|
|
|
left: 0, |
|
|
|
left: 0, |
|
|
|
right: 0 |
|
|
|
right: 0 |
|
|
@ -71589,6 +71590,7 @@ BI.MultiSelectTree = BI.inherit(BI.Single, { |
|
|
|
_defaultConfig: function () { |
|
|
|
_defaultConfig: function () { |
|
|
|
return BI.extend(BI.MultiSelectTree.superclass._defaultConfig.apply(this, arguments), { |
|
|
|
return BI.extend(BI.MultiSelectTree.superclass._defaultConfig.apply(this, arguments), { |
|
|
|
baseCls: "bi-multi-select-tree", |
|
|
|
baseCls: "bi-multi-select-tree", |
|
|
|
|
|
|
|
height: 24, |
|
|
|
itemsCreator: BI.emptyFn |
|
|
|
itemsCreator: BI.emptyFn |
|
|
|
}); |
|
|
|
}); |
|
|
|
}, |
|
|
|
}, |
|
|
@ -71679,7 +71681,7 @@ BI.MultiSelectTree = BI.inherit(BI.Single, { |
|
|
|
element: this, |
|
|
|
element: this, |
|
|
|
items: [{ |
|
|
|
items: [{ |
|
|
|
el: this.searcher, |
|
|
|
el: this.searcher, |
|
|
|
height: 24 |
|
|
|
height: o.height |
|
|
|
}, { |
|
|
|
}, { |
|
|
|
el: this.adapter, |
|
|
|
el: this.adapter, |
|
|
|
height: "fill" |
|
|
|
height: "fill" |
|
|
@ -71690,7 +71692,7 @@ BI.MultiSelectTree = BI.inherit(BI.Single, { |
|
|
|
element: this, |
|
|
|
element: this, |
|
|
|
items: [{ |
|
|
|
items: [{ |
|
|
|
el: this.searcherPane, |
|
|
|
el: this.searcherPane, |
|
|
|
top: 24, |
|
|
|
top: o.height, |
|
|
|
bottom: 0, |
|
|
|
bottom: 0, |
|
|
|
left: 0, |
|
|
|
left: 0, |
|
|
|
right: 0 |
|
|
|
right: 0 |
|
|
|