|
|
@ -71242,6 +71242,9 @@ BI.shortcut("bi.multi_select_insert_no_bar_list", BI.MultiSelectInsertNoBarList) |
|
|
|
* Created by zcf_1 on 2017/5/2. |
|
|
|
* Created by zcf_1 on 2017/5/2. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
BI.MultiSelectList = BI.inherit(BI.Widget, { |
|
|
|
BI.MultiSelectList = BI.inherit(BI.Widget, { |
|
|
|
|
|
|
|
_constant: { |
|
|
|
|
|
|
|
EDITOR_HEIGHT: 24 |
|
|
|
|
|
|
|
}, |
|
|
|
_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", |
|
|
@ -71383,7 +71386,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, { |
|
|
|
element: this, |
|
|
|
element: this, |
|
|
|
items: [{ |
|
|
|
items: [{ |
|
|
|
el: this.trigger, |
|
|
|
el: this.trigger, |
|
|
|
height: 24 |
|
|
|
height: this._constant.EDITOR_HEIGHT |
|
|
|
}, { |
|
|
|
}, { |
|
|
|
el: this.adapter, |
|
|
|
el: this.adapter, |
|
|
|
height: "fill" |
|
|
|
height: "fill" |
|
|
@ -71394,7 +71397,7 @@ BI.MultiSelectList = BI.inherit(BI.Widget, { |
|
|
|
element: this, |
|
|
|
element: this, |
|
|
|
items: [{ |
|
|
|
items: [{ |
|
|
|
el: this.searcherPane, |
|
|
|
el: this.searcherPane, |
|
|
|
top: 24, |
|
|
|
top: this._constant.EDITOR_HEIGHT, |
|
|
|
bottom: 0, |
|
|
|
bottom: 0, |
|
|
|
left: 0, |
|
|
|
left: 0, |
|
|
|
right: 0 |
|
|
|
right: 0 |
|
|
@ -71586,6 +71589,10 @@ BI.shortcut("bi.multi_select_list", BI.MultiSelectList);/** |
|
|
|
* Created by zcf_1 on 2017/5/11. |
|
|
|
* Created by zcf_1 on 2017/5/11. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
BI.MultiSelectTree = BI.inherit(BI.Single, { |
|
|
|
BI.MultiSelectTree = BI.inherit(BI.Single, { |
|
|
|
|
|
|
|
_constant: { |
|
|
|
|
|
|
|
EDITOR_HEIGHT: 24 |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
_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", |
|
|
@ -71679,7 +71686,7 @@ BI.MultiSelectTree = BI.inherit(BI.Single, { |
|
|
|
element: this, |
|
|
|
element: this, |
|
|
|
items: [{ |
|
|
|
items: [{ |
|
|
|
el: this.searcher, |
|
|
|
el: this.searcher, |
|
|
|
height: 24 |
|
|
|
height: this._constant.EDITOR_HEIGHT |
|
|
|
}, { |
|
|
|
}, { |
|
|
|
el: this.adapter, |
|
|
|
el: this.adapter, |
|
|
|
height: "fill" |
|
|
|
height: "fill" |
|
|
@ -71690,7 +71697,7 @@ BI.MultiSelectTree = BI.inherit(BI.Single, { |
|
|
|
element: this, |
|
|
|
element: this, |
|
|
|
items: [{ |
|
|
|
items: [{ |
|
|
|
el: this.searcherPane, |
|
|
|
el: this.searcherPane, |
|
|
|
top: 24, |
|
|
|
top: this._constant.EDITOR_HEIGHT, |
|
|
|
bottom: 0, |
|
|
|
bottom: 0, |
|
|
|
left: 0, |
|
|
|
left: 0, |
|
|
|
right: 0 |
|
|
|
right: 0 |
|
|
|