|
|
|
@ -27836,11 +27836,15 @@ BI.TreeView = BI.inherit(BI.Pane, {
|
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (!this.nodes) { |
|
|
|
|
return; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
BI.each(this.nodes.getNodes(), function (i, node) { |
|
|
|
|
node.halfCheck = false; |
|
|
|
|
setNode(node.children); |
|
|
|
|
}); |
|
|
|
|
this.nodes && this.nodes.checkAllNodes(checked); |
|
|
|
|
this.nodes.checkAllNodes(checked); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
expandAll: function (flag) { |
|
|
|
@ -29002,14 +29006,17 @@ BI.Combo = BI.inherit(BI.Widget, {
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
_initCombo: function () { |
|
|
|
|
this.combo = BI.createWidget(this.options.el); |
|
|
|
|
this.combo = BI.createWidget(this.options.el, { |
|
|
|
|
value: this.options.value |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
_assertPopupView: function () { |
|
|
|
|
var self = this; |
|
|
|
|
var self = this, o = this.options; |
|
|
|
|
if (this.popupView == null) { |
|
|
|
|
this.popupView = BI.createWidget(this.options.popup, { |
|
|
|
|
type: "bi.popup_view" |
|
|
|
|
type: "bi.popup_view", |
|
|
|
|
value: o.value |
|
|
|
|
}); |
|
|
|
|
this.popupView.on(BI.Controller.EVENT_CHANGE, function (type, value, obj) { |
|
|
|
|
if (type === BI.Events.CLICK) { |
|
|
|
@ -29200,14 +29207,20 @@ BI.Combo = BI.inherit(BI.Widget, {
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
setValue: function (v) { |
|
|
|
|
this._assertPopupView(); |
|
|
|
|
this.combo.setValue(v); |
|
|
|
|
this.popupView && this.popupView.setValue(v); |
|
|
|
|
if (BI.isNull(this.popupView)) { |
|
|
|
|
this.options.popup.value = v; |
|
|
|
|
} else { |
|
|
|
|
this.popupView.setValue(v); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
getValue: function () { |
|
|
|
|
this._assertPopupView(); |
|
|
|
|
return this.popupView && this.popupView.getValue(); |
|
|
|
|
if (BI.isNull(this.popupView)) { |
|
|
|
|
return this.options.popup.value; |
|
|
|
|
} else { |
|
|
|
|
return this.popupView.getValue(); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
isViewVisible: function () { |
|
|
|
@ -29386,11 +29399,13 @@ BI.Expander = BI.inherit(BI.Widget, {
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
_initExpander: function () { |
|
|
|
|
this.expander = BI.createWidget(this.options.el); |
|
|
|
|
this.expander = BI.createWidget(this.options.el, { |
|
|
|
|
value: this.options.value |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
_assertPopupView: function () { |
|
|
|
|
var self = this; |
|
|
|
|
var self = this, o = this.options; |
|
|
|
|
if (this.popupView == null) { |
|
|
|
|
this.popupView = BI.createWidget(this.options.popup, { |
|
|
|
|
type: "bi.button_group", |
|
|
|
@ -29399,7 +29414,8 @@ BI.Expander = BI.inherit(BI.Widget, {
|
|
|
|
|
type: "bi.vertical", |
|
|
|
|
hgap: 0, |
|
|
|
|
vgap: 0 |
|
|
|
|
}] |
|
|
|
|
}], |
|
|
|
|
value: o.value |
|
|
|
|
}); |
|
|
|
|
this.popupView.on(BI.Controller.EVENT_CHANGE, function (type, value, obj) { |
|
|
|
|
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments); |
|
|
|
@ -29463,14 +29479,20 @@ BI.Expander = BI.inherit(BI.Widget, {
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
setValue: function (v) { |
|
|
|
|
// this._assertPopupView();
|
|
|
|
|
this.expander.setValue(v); |
|
|
|
|
this.popupView && this.popupView.setValue(v); |
|
|
|
|
if (BI.isNull(this.popupView)) { |
|
|
|
|
this.options.popup.value = v; |
|
|
|
|
} else { |
|
|
|
|
this.popupView.setValue(v); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
getValue: function () { |
|
|
|
|
// this._assertPopupView();
|
|
|
|
|
return this.popupView ? this.popupView.getValue() : []; |
|
|
|
|
if (BI.isNull(this.popupView)) { |
|
|
|
|
return this.options.popup.value; |
|
|
|
|
} else { |
|
|
|
|
return this.popupView.getValue(); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
isViewVisible: function () { |
|
|
|
@ -30362,8 +30384,11 @@ BI.Searcher = BI.inherit(BI.Widget, {
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
setValue: function (v) { |
|
|
|
|
this._assertPopupView(); |
|
|
|
|
this.popupView && this.popupView.setValue(v); |
|
|
|
|
if (BI.isNull(this.popupView)) { |
|
|
|
|
this.options.popup.value = v; |
|
|
|
|
} else { |
|
|
|
|
this.popupView.setValue(v); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
getKeyword: function () { |
|
|
|
@ -30384,6 +30409,9 @@ BI.Searcher = BI.inherit(BI.Widget, {
|
|
|
|
|
} else if (o.adapter && o.adapter.getValue) { |
|
|
|
|
return o.adapter.getValue(); |
|
|
|
|
} |
|
|
|
|
if (BI.isNull(this.popupView)) { |
|
|
|
|
return o.popup.value; |
|
|
|
|
} |
|
|
|
|
return this.popupView.getValue(); |
|
|
|
|
|
|
|
|
|
}, |
|
|
|
@ -30538,7 +30566,9 @@ BI.Switcher = BI.inherit(BI.Widget, {
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
_initSwitcher: function () { |
|
|
|
|
this.switcher = BI.createWidget(this.options.el); |
|
|
|
|
this.switcher = BI.createWidget(this.options.el, { |
|
|
|
|
value: o.value |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
_assertPopupView: function () { |
|
|
|
@ -30552,7 +30582,8 @@ BI.Switcher = BI.inherit(BI.Widget, {
|
|
|
|
|
type: "bi.vertical", |
|
|
|
|
hgap: 0, |
|
|
|
|
vgap: 0 |
|
|
|
|
}] |
|
|
|
|
}], |
|
|
|
|
value: o.value |
|
|
|
|
}); |
|
|
|
|
this.popupView.on(BI.Controller.EVENT_CHANGE, function (type, value, obj) { |
|
|
|
|
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments); |
|
|
|
@ -30612,14 +30643,20 @@ BI.Switcher = BI.inherit(BI.Widget, {
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
setValue: function (v) { |
|
|
|
|
this._assertPopupView(); |
|
|
|
|
this.switcher.setValue(v); |
|
|
|
|
this.popupView && this.popupView.setValue(v); |
|
|
|
|
if (BI.isNull(this.popupView)) { |
|
|
|
|
this.options.popup.value = v; |
|
|
|
|
} else { |
|
|
|
|
this.popupView.setValue(v); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
getValue: function () { |
|
|
|
|
this._assertPopupView(); |
|
|
|
|
return this.popupView ? this.popupView.getValue() : []; |
|
|
|
|
if (BI.isNull(this.popupView)) { |
|
|
|
|
return this.options.popup.value; |
|
|
|
|
} else { |
|
|
|
|
return this.popupView.getValue(); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
setAdapter: function (adapter) { |
|
|
|
@ -41250,7 +41287,7 @@ BI.PopupView = BI.inherit(BI.Widget, {
|
|
|
|
|
|
|
|
|
|
_createView: function () { |
|
|
|
|
var o = this.options; |
|
|
|
|
this.button_group = BI.createWidget(o.el, {type: "bi.button_group"}); |
|
|
|
|
this.button_group = BI.createWidget(o.el, {type: "bi.button_group", value: o.value}); |
|
|
|
|
this.button_group.element.css({"min-height": o.minHeight + "px"}); |
|
|
|
|
return this.button_group; |
|
|
|
|
}, |
|
|
|
@ -41382,7 +41419,8 @@ BI.SearcherView = BI.inherit(BI.Pane, {
|
|
|
|
|
}, |
|
|
|
|
layouts: [{ |
|
|
|
|
type: "bi.vertical" |
|
|
|
|
}] |
|
|
|
|
}], |
|
|
|
|
value: o.value |
|
|
|
|
}); |
|
|
|
|
this.matcher.on(BI.Controller.EVENT_CHANGE, function (type, val, ob) { |
|
|
|
|
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments); |
|
|
|
@ -41410,7 +41448,8 @@ BI.SearcherView = BI.inherit(BI.Pane, {
|
|
|
|
|
}, |
|
|
|
|
layouts: [{ |
|
|
|
|
type: "bi.vertical" |
|
|
|
|
}] |
|
|
|
|
}], |
|
|
|
|
value: o.value |
|
|
|
|
}); |
|
|
|
|
this.searcher.on(BI.Controller.EVENT_CHANGE, function (type, val, ob) { |
|
|
|
|
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments); |
|
|
|
@ -59844,7 +59883,8 @@ BI.CustomTree = BI.inherit(BI.Widget, {
|
|
|
|
|
args[0] = self._formatItems(items); |
|
|
|
|
callback.apply(null, args); |
|
|
|
|
}]); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
value: o.value |
|
|
|
|
}); |
|
|
|
|
this.tree.on(BI.Controller.EVENT_CHANGE, function (type, val, obj) { |
|
|
|
|
self.fireEvent(BI.Controller.EVENT_CHANGE, arguments); |
|
|
|
@ -65898,25 +65938,42 @@ BI.ColorChooser = BI.inherit(BI.Widget, {
|
|
|
|
|
_init: function () { |
|
|
|
|
BI.ColorChooser.superclass._init.apply(this, arguments); |
|
|
|
|
var self = this, o = this.options; |
|
|
|
|
this.trigger = BI.createWidget(BI.extend({ |
|
|
|
|
type: "bi.color_chooser_trigger", |
|
|
|
|
width: o.width, |
|
|
|
|
height: o.height |
|
|
|
|
}, o.el)); |
|
|
|
|
this.colorPicker = BI.createWidget({ |
|
|
|
|
type: "bi.color_chooser_popup" |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
this.combo = BI.createWidget({ |
|
|
|
|
type: "bi.combo", |
|
|
|
|
element: this, |
|
|
|
|
adjustLength: 1, |
|
|
|
|
el: this.trigger, |
|
|
|
|
el: BI.extend({ |
|
|
|
|
type: "bi.color_chooser_trigger", |
|
|
|
|
ref: function (_ref) { |
|
|
|
|
self.trigger = _ref; |
|
|
|
|
}, |
|
|
|
|
width: o.width, |
|
|
|
|
height: o.height |
|
|
|
|
}, o.el), |
|
|
|
|
popup: { |
|
|
|
|
el: this.colorPicker, |
|
|
|
|
el: { |
|
|
|
|
type: "bi.color_chooser_popup", |
|
|
|
|
ref: function (_ref) { |
|
|
|
|
self.colorPicker = _ref; |
|
|
|
|
}, |
|
|
|
|
listeners: [{ |
|
|
|
|
eventName: BI.ColorChooserPopup.EVENT_VALUE_CHANGE, |
|
|
|
|
action: function () { |
|
|
|
|
fn(); |
|
|
|
|
} |
|
|
|
|
}, { |
|
|
|
|
eventName: BI.ColorChooserPopup.EVENT_CHANGE, |
|
|
|
|
action: function () { |
|
|
|
|
fn(); |
|
|
|
|
self.combo.hideView(); |
|
|
|
|
} |
|
|
|
|
}] |
|
|
|
|
}, |
|
|
|
|
stopPropagation: false, |
|
|
|
|
minWidth: 202 |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
value: o.value |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
var fn = function () { |
|
|
|
@ -65929,15 +65986,6 @@ BI.ColorChooser = BI.inherit(BI.Widget, {
|
|
|
|
|
que.unshift(color); |
|
|
|
|
BI.Cache.setItem("colors", BI.array2String(que.toArray())); |
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
this.colorPicker.on(BI.ColorChooserPopup.EVENT_VALUE_CHANGE, function () { |
|
|
|
|
fn(); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
this.colorPicker.on(BI.ColorChooserPopup.EVENT_CHANGE, function () { |
|
|
|
|
fn(); |
|
|
|
|
self.combo.hideView(); |
|
|
|
|
}); |
|
|
|
|
this.combo.on(BI.Combo.EVENT_BEFORE_POPUPVIEW, function () { |
|
|
|
|
self.colorPicker.setStoreColors(BI.string2Array(BI.Cache.getItem("colors") || "")); |
|
|
|
|
}); |
|
|
|
@ -65964,7 +66012,7 @@ BI.ColorChooser = BI.inherit(BI.Widget, {
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
getValue: function () { |
|
|
|
|
return this.colorPicker.getValue(); |
|
|
|
|
return this.combo.getValue(); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
BI.ColorChooser.EVENT_CHANGE = "ColorChooser.EVENT_CHANGE"; |
|
|
|
@ -65989,7 +66037,8 @@ BI.ColorChooserPopup = BI.inherit(BI.Widget, {
|
|
|
|
|
BI.ColorChooserPopup.superclass._init.apply(this, arguments); |
|
|
|
|
var self = this, o = this.options; |
|
|
|
|
this.colorEditor = BI.createWidget({ |
|
|
|
|
type: "bi.color_picker_editor" |
|
|
|
|
type: "bi.color_picker_editor", |
|
|
|
|
value: o.value |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
this.colorEditor.on(BI.ColorPickerEditor.EVENT_CHANGE, function () { |
|
|
|
@ -66025,7 +66074,8 @@ BI.ColorChooserPopup = BI.inherit(BI.Widget, {
|
|
|
|
|
disabled: true |
|
|
|
|
}]], |
|
|
|
|
width: 190, |
|
|
|
|
height: 25 |
|
|
|
|
height: 25, |
|
|
|
|
value: o.value |
|
|
|
|
}); |
|
|
|
|
this.storeColors.on(BI.ColorPicker.EVENT_CHANGE, function () { |
|
|
|
|
self.setValue(this.getValue()[0]); |
|
|
|
@ -66035,7 +66085,8 @@ BI.ColorChooserPopup = BI.inherit(BI.Widget, {
|
|
|
|
|
this.colorPicker = BI.createWidget({ |
|
|
|
|
type: "bi.color_picker", |
|
|
|
|
width: 190, |
|
|
|
|
height: 50 |
|
|
|
|
height: 50, |
|
|
|
|
value: o.value |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
this.colorPicker.on(BI.ColorPicker.EVENT_CHANGE, function () { |
|
|
|
@ -66448,7 +66499,8 @@ BI.ColorPicker = BI.inherit(BI.Widget, {
|
|
|
|
|
}), |
|
|
|
|
layouts: [{ |
|
|
|
|
type: "bi.grid" |
|
|
|
|
}] |
|
|
|
|
}], |
|
|
|
|
value: o.value |
|
|
|
|
}); |
|
|
|
|
this.colors.on(BI.ButtonGroup.EVENT_CHANGE, function () { |
|
|
|
|
self.fireEvent(BI.ColorPicker.EVENT_CHANGE, arguments); |
|
|
|
@ -75569,7 +75621,8 @@ BI.LevelTree = BI.inherit(BI.Widget, {
|
|
|
|
|
chooseType: 0 |
|
|
|
|
}, |
|
|
|
|
expander: {}, |
|
|
|
|
items: [] |
|
|
|
|
items: [], |
|
|
|
|
value: "" |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
@ -75638,6 +75691,7 @@ BI.LevelTree = BI.inherit(BI.Widget, {
|
|
|
|
|
}, o.expander), |
|
|
|
|
|
|
|
|
|
items: this._formatItems(BI.Tree.transformToTreeFormat(nodes), 0), |
|
|
|
|
value: o.value, |
|
|
|
|
|
|
|
|
|
el: BI.extend({ |
|
|
|
|
type: "bi.button_tree", |
|
|
|
@ -75729,6 +75783,9 @@ BI.SimpleTreeView = BI.inherit(BI.Widget, {
|
|
|
|
|
if (BI.isNotEmptyArray(o.items)) { |
|
|
|
|
this.populate(); |
|
|
|
|
} |
|
|
|
|
if (BI.isNotNull(o.value)) { |
|
|
|
|
this.setValue(o.value); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
populate: function (items, keyword) { |
|
|
|
@ -75740,7 +75797,7 @@ BI.SimpleTreeView = BI.inherit(BI.Widget, {
|
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
setValue: function (v) { |
|
|
|
|
_digest: function (v) { |
|
|
|
|
v || (v = []); |
|
|
|
|
var self = this, map = {}; |
|
|
|
|
var selected = []; |
|
|
|
@ -75768,8 +75825,11 @@ BI.SimpleTreeView = BI.inherit(BI.Widget, {
|
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
return BI.makeObject(v.concat(selected)); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
this.tree.setValue(BI.makeObject(v.concat(selected))); |
|
|
|
|
setValue: function (v) { |
|
|
|
|
this.tree.setValue(this._digest(v)); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
_getValue: function () { |
|
|
|
@ -76149,7 +76209,7 @@ BI.SelectTextTrigger = BI.inherit(BI.Trigger, {
|
|
|
|
|
type: "bi.text_trigger", |
|
|
|
|
element: this, |
|
|
|
|
height: o.height, |
|
|
|
|
text: this._digest(o.text, o.items) |
|
|
|
|
text: this._digest(o.value, o.items) |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
@ -84039,7 +84099,8 @@ BI.MultiLayerSelectTreeCombo = BI.inherit(BI.Widget, {
|
|
|
|
|
isDefaultInit: false, |
|
|
|
|
height: 30, |
|
|
|
|
text: "", |
|
|
|
|
items: [] |
|
|
|
|
items: [], |
|
|
|
|
value: "" |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
@ -84051,13 +84112,15 @@ BI.MultiLayerSelectTreeCombo = BI.inherit(BI.Widget, {
|
|
|
|
|
type: "bi.single_tree_trigger", |
|
|
|
|
text: o.text, |
|
|
|
|
height: o.height, |
|
|
|
|
items: o.items |
|
|
|
|
items: o.items, |
|
|
|
|
value: o.value |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
this.popup = BI.createWidget({ |
|
|
|
|
type: "bi.multilayer_select_tree_popup", |
|
|
|
|
isDefaultInit: o.isDefaultInit, |
|
|
|
|
items: o.items |
|
|
|
|
items: o.items, |
|
|
|
|
value: o.value |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
this.combo = BI.createWidget({ |
|
|
|
@ -84108,7 +84171,8 @@ BI.MultiLayerSelectLevelTree = BI.inherit(BI.Widget, {
|
|
|
|
|
baseCls: "bi-multilayer-select-level-tree", |
|
|
|
|
isDefaultInit: false, |
|
|
|
|
items: [], |
|
|
|
|
itemsCreator: BI.emptyFn |
|
|
|
|
itemsCreator: BI.emptyFn, |
|
|
|
|
value: "" |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
@ -84180,6 +84244,7 @@ BI.MultiLayerSelectLevelTree = BI.inherit(BI.Widget, {
|
|
|
|
|
|
|
|
|
|
items: this._formatItems(BI.Tree.transformToTreeFormat(nodes), 0), |
|
|
|
|
itemsCreator: o.itemsCreator, |
|
|
|
|
value: o.value, |
|
|
|
|
|
|
|
|
|
el: { |
|
|
|
|
type: "bi.button_tree", |
|
|
|
@ -84238,7 +84303,8 @@ BI.MultiLayerSelectTreePopup = BI.inherit(BI.Pane, {
|
|
|
|
|
tipText: BI.i18nText("BI-No_Selected_Item"), |
|
|
|
|
isDefaultInit: false, |
|
|
|
|
itemsCreator: BI.emptyFn, |
|
|
|
|
items: [] |
|
|
|
|
items: [], |
|
|
|
|
value: "" |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
@ -84251,6 +84317,7 @@ BI.MultiLayerSelectTreePopup = BI.inherit(BI.Pane, {
|
|
|
|
|
type: "bi.multilayer_select_level_tree", |
|
|
|
|
isDefaultInit: o.isDefaultInit, |
|
|
|
|
items: o.items, |
|
|
|
|
value: o.value, |
|
|
|
|
itemsCreator: o.itemsCreator |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
@ -84579,7 +84646,8 @@ BI.MultiLayerSingleTreeCombo = BI.inherit(BI.Widget, {
|
|
|
|
|
height: 30, |
|
|
|
|
text: "", |
|
|
|
|
itemsCreator: BI.emptyFn, |
|
|
|
|
items: [] |
|
|
|
|
items: [], |
|
|
|
|
value: "" |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
@ -84591,13 +84659,15 @@ BI.MultiLayerSingleTreeCombo = BI.inherit(BI.Widget, {
|
|
|
|
|
type: "bi.single_tree_trigger", |
|
|
|
|
text: o.text, |
|
|
|
|
height: o.height, |
|
|
|
|
items: o.items |
|
|
|
|
items: o.items, |
|
|
|
|
value: o.value |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
this.popup = BI.createWidget({ |
|
|
|
|
type: "bi.multilayer_single_tree_popup", |
|
|
|
|
isDefaultInit: o.isDefaultInit, |
|
|
|
|
items: o.items |
|
|
|
|
items: o.items, |
|
|
|
|
value: o.value |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
this.combo = BI.createWidget({ |
|
|
|
@ -84719,6 +84789,7 @@ BI.MultiLayerSingleLevelTree = BI.inherit(BI.Widget, {
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
items: this._formatItems(BI.Tree.transformToTreeFormat(nodes), 0), |
|
|
|
|
value: o.value, |
|
|
|
|
itemsCreator: function (op, callback) { |
|
|
|
|
o.itemsCreator(op, function (items) { |
|
|
|
|
callback(BI.Tree.transformToTreeFormat(items), 0); |
|
|
|
@ -84796,7 +84867,8 @@ BI.MultiLayerSingleTreePopup = BI.inherit(BI.Pane, {
|
|
|
|
|
type: "bi.multilayer_single_level_tree", |
|
|
|
|
isDefaultInit: o.isDefaultInit, |
|
|
|
|
items: o.items, |
|
|
|
|
itemsCreator: o.itemsCreator |
|
|
|
|
itemsCreator: o.itemsCreator, |
|
|
|
|
value: o.value |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
BI.createWidget({ |
|
|
|
@ -92393,7 +92465,8 @@ BI.SelectTreeCombo = BI.inherit(BI.Widget, {
|
|
|
|
|
baseCls: "bi-select-tree-combo", |
|
|
|
|
height: 30, |
|
|
|
|
text: "", |
|
|
|
|
items: [] |
|
|
|
|
items: [], |
|
|
|
|
value: "" |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
@ -92405,12 +92478,14 @@ BI.SelectTreeCombo = BI.inherit(BI.Widget, {
|
|
|
|
|
type: "bi.single_tree_trigger", |
|
|
|
|
text: o.text, |
|
|
|
|
height: o.height, |
|
|
|
|
items: o.items |
|
|
|
|
items: o.items, |
|
|
|
|
value: o.value |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
this.popup = BI.createWidget({ |
|
|
|
|
type: "bi.select_level_tree", |
|
|
|
|
items: o.items |
|
|
|
|
items: o.items, |
|
|
|
|
value: o.value |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
this.combo = BI.createWidget({ |
|
|
|
@ -92532,7 +92607,8 @@ BI.SelectTreePopup = BI.inherit(BI.Pane, {
|
|
|
|
|
return BI.extend(BI.SelectTreePopup.superclass._defaultConfig.apply(this, arguments), { |
|
|
|
|
baseCls: "bi-select-level-tree", |
|
|
|
|
tipText: BI.i18nText("BI-No_Selected_Item"), |
|
|
|
|
items: [] |
|
|
|
|
items: [], |
|
|
|
|
value: "" |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
@ -92581,6 +92657,7 @@ BI.SelectTreePopup = BI.inherit(BI.Pane, {
|
|
|
|
|
isDefaultInit: true |
|
|
|
|
}, |
|
|
|
|
items: this._formatItems(BI.Tree.transformToTreeFormat(o.items)), |
|
|
|
|
value: o.value, |
|
|
|
|
chooseType: BI.Selection.Single |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
@ -96499,7 +96576,8 @@ BI.SingleTreeCombo = BI.inherit(BI.Widget, {
|
|
|
|
|
trigger: {}, |
|
|
|
|
height: 24, |
|
|
|
|
text: "", |
|
|
|
|
items: [] |
|
|
|
|
items: [], |
|
|
|
|
value: "" |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
@ -96511,12 +96589,14 @@ BI.SingleTreeCombo = BI.inherit(BI.Widget, {
|
|
|
|
|
type: "bi.single_tree_trigger", |
|
|
|
|
text: o.text, |
|
|
|
|
height: o.height, |
|
|
|
|
items: o.items |
|
|
|
|
items: o.items, |
|
|
|
|
value: o.value |
|
|
|
|
}, o.trigger)); |
|
|
|
|
|
|
|
|
|
this.popup = BI.createWidget({ |
|
|
|
|
type: "bi.single_level_tree", |
|
|
|
|
items: o.items |
|
|
|
|
items: o.items, |
|
|
|
|
value: o.value |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
this.combo = BI.createWidget({ |
|
|
|
@ -96571,7 +96651,8 @@ BI.SingleTreePopup = BI.inherit(BI.Pane, {
|
|
|
|
|
return BI.extend(BI.SingleTreePopup.superclass._defaultConfig.apply(this, arguments), { |
|
|
|
|
baseCls: "bi-single-level-tree", |
|
|
|
|
tipText: BI.i18nText("BI-No_Selected_Item"), |
|
|
|
|
items: [] |
|
|
|
|
items: [], |
|
|
|
|
value: "" |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
@ -96579,13 +96660,14 @@ BI.SingleTreePopup = BI.inherit(BI.Pane, {
|
|
|
|
|
BI.SingleTreePopup.superclass._init.apply(this, arguments); |
|
|
|
|
|
|
|
|
|
var self = this, o = this.options; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
this.tree = BI.createWidget({ |
|
|
|
|
type: "bi.level_tree", |
|
|
|
|
expander: { |
|
|
|
|
isDefaultInit: true |
|
|
|
|
}, |
|
|
|
|
items: o.items, |
|
|
|
|
value: o.value, |
|
|
|
|
chooseType: BI.Selection.Single |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
@ -96634,7 +96716,8 @@ BI.SingleTreeTrigger = BI.inherit(BI.Trigger, {
|
|
|
|
|
baseCls: "bi-single-tree-trigger", |
|
|
|
|
height: 24, |
|
|
|
|
text: "", |
|
|
|
|
items: [] |
|
|
|
|
items: [], |
|
|
|
|
value: "" |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
@ -96648,7 +96731,8 @@ BI.SingleTreeTrigger = BI.inherit(BI.Trigger, {
|
|
|
|
|
element: this, |
|
|
|
|
text: o.text, |
|
|
|
|
items: o.items, |
|
|
|
|
height: o.height |
|
|
|
|
height: o.height, |
|
|
|
|
value: o.value |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
@ -96715,7 +96799,8 @@ BI.SwitchTree = BI.inherit(BI.Widget, {
|
|
|
|
|
this.levelTree = BI.createWidget({ |
|
|
|
|
type: "bi.multilayer_single_level_tree", |
|
|
|
|
isDefaultInit: true, |
|
|
|
|
items: BI.deepClone(o.items) |
|
|
|
|
items: BI.deepClone(o.items), |
|
|
|
|
value: o.value |
|
|
|
|
}); |
|
|
|
|
this.levelTree.on(BI.LevelTree.EVENT_CHANGE, function () { |
|
|
|
|
self.fireEvent(BI.SwitchTree.EVENT_CHANGE, arguments); |
|
|
|
@ -96724,7 +96809,8 @@ BI.SwitchTree = BI.inherit(BI.Widget, {
|
|
|
|
|
case BI.SwitchTree.SelectType.MultiSelect: |
|
|
|
|
this.tree = BI.createWidget({ |
|
|
|
|
type: "bi.simple_tree", |
|
|
|
|
items: this._removeIsParent(BI.deepClone(o.items)) |
|
|
|
|
items: this._removeIsParent(BI.deepClone(o.items)), |
|
|
|
|
value: o.value |
|
|
|
|
}); |
|
|
|
|
this.tree.on(BI.SimpleTreeView.EVENT_CHANGE, function () { |
|
|
|
|
self.fireEvent(BI.SwitchTree.EVENT_CHANGE, arguments); |
|
|
|
|