|
|
|
@ -40083,7 +40083,7 @@ BI.AsyncTree = BI.inherit(BI.TreeView, {
|
|
|
|
|
// 当前点击节点的状态是半选,且为true_part, 则将其改为false_part,使得点击半选后切换到的是全选
|
|
|
|
|
var checked = treeNode.checked; |
|
|
|
|
var status = treeNode.getCheckStatus(); |
|
|
|
|
if(status.half === true && status.checked === true) { |
|
|
|
|
if (status.half === true && status.checked === true) { |
|
|
|
|
checked = false; |
|
|
|
|
} |
|
|
|
|
zTree.checkNode(treeNode, !checked, true, true); |
|
|
|
@ -40113,7 +40113,7 @@ BI.AsyncTree = BI.inherit(BI.TreeView, {
|
|
|
|
|
} |
|
|
|
|
var status = treeNode.getCheckStatus(); |
|
|
|
|
// 当前点击节点的状态是半选,且为true_part, 则将其改为false_part,使得点击半选后切换到的是全选
|
|
|
|
|
if(status.half === true && status.checked === true) { |
|
|
|
|
if (status.half === true && status.checked === true) { |
|
|
|
|
treeNode.checked = false; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
@ -40208,6 +40208,7 @@ BI.AsyncTree = BI.inherit(BI.TreeView, {
|
|
|
|
|
var map = {}; |
|
|
|
|
track([], valueA, valueB); |
|
|
|
|
track([], valueB, valueA); |
|
|
|
|
|
|
|
|
|
function track (parent, node, compare) { |
|
|
|
|
BI.each(node, function (n, item) { |
|
|
|
|
if (BI.isNull(compare[n])) { |
|
|
|
@ -40227,7 +40228,7 @@ BI.AsyncTree = BI.inherit(BI.TreeView, {
|
|
|
|
|
return !BI.isEmpty(this.options.paras.selectedValues) || BI.AsyncTree.superclass.hasChecked.apply(this, arguments); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
getValue: function () { |
|
|
|
|
_getJoinValue: function () { |
|
|
|
|
if (!this.nodes) { |
|
|
|
|
return {}; |
|
|
|
|
} |
|
|
|
@ -40241,6 +40242,10 @@ BI.AsyncTree = BI.inherit(BI.TreeView, {
|
|
|
|
|
return this._join(checkedValues, this.options.paras.selectedValues); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
getValue: function () { |
|
|
|
|
return BI.deepClone(this.options.paras.selectedValues || {}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
// 生成树方法
|
|
|
|
|
stroke: function (config) { |
|
|
|
|
delete this.options.keyword; |
|
|
|
@ -40294,11 +40299,13 @@ BI.PartTree = BI.inherit(BI.AsyncTree, {
|
|
|
|
|
var parentValues = BI.deepClone(treeNode.parentValues || self._getParentValues(treeNode)); |
|
|
|
|
var name = this._getNodeValue(treeNode); |
|
|
|
|
if (treeNode.checked === true) { |
|
|
|
|
this._buildTree(self.options.paras.selectedValues, BI.concat(parentValues, name)); |
|
|
|
|
o.itemsCreator({ |
|
|
|
|
this.options.paras.selectedValues = this._getJoinValue(); |
|
|
|
|
// this._buildTree(self.options.paras.selectedValues, BI.concat(parentValues, name));
|
|
|
|
|
o.itemsCreator(BI.extend({}, o.paras, { |
|
|
|
|
type: BI.TreeView.REQ_TYPE_ADJUST_DATA, |
|
|
|
|
selectedValues: self.options.paras.selectedValues |
|
|
|
|
}, function (res) { |
|
|
|
|
curSelectedValue: name, |
|
|
|
|
parentValues: parentValues |
|
|
|
|
}), function (res) { |
|
|
|
|
self.options.paras.selectedValues = res; |
|
|
|
|
BI.AsyncTree.superclass._selectTreeNode.apply(self, arguments); |
|
|
|
|
}); |
|
|
|
@ -40333,6 +40340,7 @@ BI.PartTree = BI.inherit(BI.AsyncTree, {
|
|
|
|
|
var hashMap = {}; |
|
|
|
|
var rootNoots = this.nodes.getNodes(); |
|
|
|
|
track(rootNoots); |
|
|
|
|
|
|
|
|
|
function track (nodes) { |
|
|
|
|
BI.each(nodes, function (i, node) { |
|
|
|
|
var checkState = node.getCheckStatus(); |
|
|
|
@ -41639,14 +41647,13 @@ BI.Combo = BI.inherit(BI.Widget, {
|
|
|
|
|
this._toggle(); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
destroy: function () { |
|
|
|
|
destroyed: function () { |
|
|
|
|
BI.Widget._renderEngine.createElement(document).unbind("mousedown." + this.getName()) |
|
|
|
|
.unbind("mousewheel." + this.getName()) |
|
|
|
|
.unbind("mouseenter." + this.getName()) |
|
|
|
|
.unbind("mousemove." + this.getName()) |
|
|
|
|
.unbind("mouseleave." + this.getName()); |
|
|
|
|
BI.Resizers.remove(this.getName()); |
|
|
|
|
BI.Combo.superclass.destroy.apply(this, arguments); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
BI.Combo.EVENT_TRIGGER_CHANGE = "EVENT_TRIGGER_CHANGE"; |
|
|
|
@ -42866,9 +42873,8 @@ BI.Searcher = BI.inherit(BI.Widget, {
|
|
|
|
|
this.popupView && this.popupView.empty(); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
destroy: function () { |
|
|
|
|
destroyed: function () { |
|
|
|
|
BI.Maskers.remove(this.getName()); |
|
|
|
|
BI.Searcher.superclass.destroy.apply(this, arguments); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
BI.Searcher.EVENT_CHANGE = "EVENT_CHANGE"; |
|
|
|
@ -45380,7 +45386,7 @@ BI.Button = BI.inherit(BI.BasicButton, {
|
|
|
|
|
height: o.height - 2 |
|
|
|
|
}); |
|
|
|
|
BI.createWidget({ |
|
|
|
|
type: "bi.horizontal_auto", |
|
|
|
|
type: "bi.center_adapt", |
|
|
|
|
cls: o.iconCls, |
|
|
|
|
element: this, |
|
|
|
|
hgap: o.hgap, |
|
|
|
@ -52357,7 +52363,7 @@ BI.ArrowNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -52439,7 +52445,7 @@ BI.FirstPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -52522,7 +52528,7 @@ BI.IconArrowNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
open: false, |
|
|
|
|
height: 24, |
|
|
|
|
height: 30, |
|
|
|
|
iconHeight: 12, |
|
|
|
|
iconWidth: 12, |
|
|
|
|
iconCls: "" |
|
|
|
@ -52618,7 +52624,7 @@ BI.LastPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -52699,7 +52705,7 @@ BI.MidPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -52772,7 +52778,7 @@ BI.shortcut("bi.mid_plus_group_node", BI.MidPlusGroupNode);BI.MultiLayerIconArro
|
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
open: false, |
|
|
|
|
height: 24, |
|
|
|
|
height: 30, |
|
|
|
|
iconHeight: 16, |
|
|
|
|
iconWidth: 16, |
|
|
|
|
iconCls: "" |
|
|
|
@ -52868,7 +52874,7 @@ BI.PlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -52989,7 +52995,7 @@ BI.FirstTreeLeafItem = BI.inherit(BI.BasicButton, {
|
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
layer: 0, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -53018,19 +53024,19 @@ BI.FirstTreeLeafItem = BI.inherit(BI.BasicButton, {
|
|
|
|
|
}); |
|
|
|
|
var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); |
|
|
|
|
var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { |
|
|
|
|
width: 12, |
|
|
|
|
width: 16, |
|
|
|
|
el: { |
|
|
|
|
type: "bi.layout", |
|
|
|
|
cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", |
|
|
|
|
width: 12, |
|
|
|
|
width: 16, |
|
|
|
|
height: o.height |
|
|
|
|
} |
|
|
|
|
}), { |
|
|
|
|
width: 24, |
|
|
|
|
width: 30, |
|
|
|
|
el: { |
|
|
|
|
type: "bi.layout", |
|
|
|
|
cls: "first-line-conn-background", |
|
|
|
|
width: 24, |
|
|
|
|
width: 30, |
|
|
|
|
height: o.height |
|
|
|
|
} |
|
|
|
|
}, { |
|
|
|
@ -53085,7 +53091,7 @@ BI.shortcut("bi.first_tree_leaf_item", BI.FirstTreeLeafItem);BI.IconTreeLeafItem
|
|
|
|
|
logic: { |
|
|
|
|
dynamic: false |
|
|
|
|
}, |
|
|
|
|
height: 24, |
|
|
|
|
height: 30, |
|
|
|
|
iconWidth: 16, |
|
|
|
|
iconHeight: 16, |
|
|
|
|
iconCls: "" |
|
|
|
@ -53180,7 +53186,7 @@ BI.LastTreeLeafItem = BI.inherit(BI.BasicButton, {
|
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
layer: 0, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -53209,19 +53215,19 @@ BI.LastTreeLeafItem = BI.inherit(BI.BasicButton, {
|
|
|
|
|
}); |
|
|
|
|
var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); |
|
|
|
|
var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { |
|
|
|
|
width: 12, |
|
|
|
|
width: 16, |
|
|
|
|
el: { |
|
|
|
|
type: "bi.layout", |
|
|
|
|
cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", |
|
|
|
|
width: 12, |
|
|
|
|
width: 16, |
|
|
|
|
height: o.height |
|
|
|
|
} |
|
|
|
|
}), { |
|
|
|
|
width: 24, |
|
|
|
|
width: 30, |
|
|
|
|
el: { |
|
|
|
|
type: "bi.layout", |
|
|
|
|
cls: "last-line-conn-background", |
|
|
|
|
width: 24, |
|
|
|
|
width: 30, |
|
|
|
|
height: o.height |
|
|
|
|
} |
|
|
|
|
}, { |
|
|
|
@ -53284,7 +53290,7 @@ BI.MidTreeLeafItem = BI.inherit(BI.BasicButton, {
|
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
layer: 0, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -53313,19 +53319,19 @@ BI.MidTreeLeafItem = BI.inherit(BI.BasicButton, {
|
|
|
|
|
}); |
|
|
|
|
var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); |
|
|
|
|
var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, ((o.layer === 0) ? "" : { |
|
|
|
|
width: 12, |
|
|
|
|
width: 16, |
|
|
|
|
el: { |
|
|
|
|
type: "bi.layout", |
|
|
|
|
cls: (o.pNode && o.pNode.isLastNode) ? "" : "base-line-conn-background", |
|
|
|
|
width: 12, |
|
|
|
|
width: 16, |
|
|
|
|
height: o.height |
|
|
|
|
} |
|
|
|
|
}), { |
|
|
|
|
width: 24, |
|
|
|
|
width: 30, |
|
|
|
|
el: { |
|
|
|
|
type: "bi.layout", |
|
|
|
|
cls: "mid-line-conn-background", |
|
|
|
|
width: 24, |
|
|
|
|
width: 30, |
|
|
|
|
height: o.height |
|
|
|
|
} |
|
|
|
|
}, { |
|
|
|
@ -53382,7 +53388,7 @@ BI.MultiLayerIconTreeLeafItem = BI.inherit(BI.BasicButton, {
|
|
|
|
|
return BI.extend(BI.MultiLayerIconTreeLeafItem.superclass._defaultConfig.apply(this, arguments), { |
|
|
|
|
extraCls: "bi-multilayer-icon-tree-leaf-item bi-list-item-active", |
|
|
|
|
layer: 0, |
|
|
|
|
height: 24, |
|
|
|
|
height: 30, |
|
|
|
|
iconCls: "", |
|
|
|
|
iconHeight: 16, |
|
|
|
|
iconWidth: 16 |
|
|
|
@ -53482,7 +53488,7 @@ BI.TreeTextLeafItem = BI.inherit(BI.BasicButton, {
|
|
|
|
|
extraCls: "bi-tree-text-leaf-item bi-list-item-active", |
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
height: 24, |
|
|
|
|
height: 30, |
|
|
|
|
hgap: 0, |
|
|
|
|
lgap: 0, |
|
|
|
|
rgap: 0 |
|
|
|
@ -53704,7 +53710,7 @@ BI.Calendar = BI.inherit(BI.Widget, {
|
|
|
|
|
whiteSpace: "normal", |
|
|
|
|
once: false, |
|
|
|
|
forceSelected: true, |
|
|
|
|
height: 24, |
|
|
|
|
height: 30, |
|
|
|
|
value: o.year + "-" + month + "-" + td.text, |
|
|
|
|
disabled: td.lastMonth || td.nextMonth || td.disabled, |
|
|
|
|
lgap: 5, |
|
|
|
@ -53721,7 +53727,7 @@ BI.Calendar = BI.inherit(BI.Widget, {
|
|
|
|
|
columns: 7, |
|
|
|
|
rows: 6, |
|
|
|
|
columnSize: [1 / 7, 1 / 7, 1 / 7, 1 / 7, 1 / 7, 1 / 7, 1 / 7], |
|
|
|
|
rowSize: 24, |
|
|
|
|
rowSize: 30, |
|
|
|
|
vgap: 10 |
|
|
|
|
}))] |
|
|
|
|
}); |
|
|
|
@ -53870,7 +53876,7 @@ BI.YearCalendar = BI.inherit(BI.Widget, {
|
|
|
|
|
whiteSpace: "normal", |
|
|
|
|
once: false, |
|
|
|
|
forceSelected: true, |
|
|
|
|
height: 24, |
|
|
|
|
height: 30, |
|
|
|
|
width: 45, |
|
|
|
|
value: td.text, |
|
|
|
|
disabled: td.disabled |
|
|
|
@ -53886,7 +53892,7 @@ BI.YearCalendar = BI.inherit(BI.Widget, {
|
|
|
|
|
columns: 2, |
|
|
|
|
rows: 6, |
|
|
|
|
columnSize: [1 / 2, 1 / 2], |
|
|
|
|
rowSize: 24 |
|
|
|
|
rowSize: 30 |
|
|
|
|
})), { |
|
|
|
|
type: "bi.center_adapt", |
|
|
|
|
vgap: 1 |
|
|
|
@ -54000,8 +54006,8 @@ BI.FirstTreeNodeCheckbox = BI.inherit(BI.IconButton, {
|
|
|
|
|
_defaultConfig: function () { |
|
|
|
|
return BI.extend( BI.FirstTreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { |
|
|
|
|
extraCls: "tree-collapse-icon-type2", |
|
|
|
|
iconWidth: 24, |
|
|
|
|
iconHeight: 24 |
|
|
|
|
iconWidth: 30, |
|
|
|
|
iconHeight: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
@ -54023,8 +54029,8 @@ BI.LastTreeNodeCheckbox = BI.inherit(BI.IconButton, {
|
|
|
|
|
_defaultConfig: function () { |
|
|
|
|
return BI.extend(BI.LastTreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { |
|
|
|
|
extraCls: "tree-collapse-icon-type4", |
|
|
|
|
iconWidth: 24, |
|
|
|
|
iconHeight: 24 |
|
|
|
|
iconWidth: 30, |
|
|
|
|
iconHeight: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
@ -54046,8 +54052,8 @@ BI.MidTreeNodeCheckbox = BI.inherit(BI.IconButton, {
|
|
|
|
|
_defaultConfig: function () { |
|
|
|
|
return BI.extend( BI.MidTreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { |
|
|
|
|
extraCls: "tree-collapse-icon-type3", |
|
|
|
|
iconWidth: 24, |
|
|
|
|
iconHeight: 24 |
|
|
|
|
iconWidth: 30, |
|
|
|
|
iconHeight: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
@ -54069,8 +54075,8 @@ BI.TreeNodeCheckbox = BI.inherit(BI.IconButton, {
|
|
|
|
|
_defaultConfig: function () { |
|
|
|
|
return BI.extend( BI.TreeNodeCheckbox.superclass._defaultConfig.apply(this, arguments), { |
|
|
|
|
extraCls: "tree-collapse-icon-type1", |
|
|
|
|
iconWidth: 24, |
|
|
|
|
iconHeight: 24 |
|
|
|
|
iconWidth: 30, |
|
|
|
|
iconHeight: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
@ -56195,7 +56201,7 @@ BI.IconComboPopup = BI.inherit(BI.Pane, {
|
|
|
|
|
type: "bi.button_group", |
|
|
|
|
items: BI.createItems(o.items, { |
|
|
|
|
type: "bi.single_select_icon_text_item", |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}), |
|
|
|
|
chooseType: o.chooseType, |
|
|
|
|
layouts: [{ |
|
|
|
@ -56223,7 +56229,7 @@ BI.IconComboPopup = BI.inherit(BI.Pane, {
|
|
|
|
|
BI.IconComboPopup.superclass.populate.apply(this, arguments); |
|
|
|
|
items = BI.createItems(items, { |
|
|
|
|
type: "bi.single_select_icon_text_item", |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
this.popup.populate(items); |
|
|
|
|
}, |
|
|
|
@ -56398,7 +56404,7 @@ BI.IconTextValueCombo = BI.inherit(BI.Widget, {
|
|
|
|
|
el: this.trigger, |
|
|
|
|
popup: { |
|
|
|
|
el: this.popup, |
|
|
|
|
maxHeight: 240 |
|
|
|
|
maxHeight: 300 |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
if (BI.isKey(o.value)) { |
|
|
|
@ -56457,7 +56463,7 @@ BI.IconTextValueComboPopup = BI.inherit(BI.Pane, {
|
|
|
|
|
type: "bi.button_group", |
|
|
|
|
items: BI.createItems(o.items, { |
|
|
|
|
type: "bi.single_select_icon_text_item", |
|
|
|
|
height: 24, |
|
|
|
|
height: 30, |
|
|
|
|
iconHeight: o.iconHeight, |
|
|
|
|
iconWidth: o.iconWidth, |
|
|
|
|
iconWrapperWidth: o.iconWrapperWidth |
|
|
|
@ -56496,7 +56502,7 @@ BI.IconTextValueComboPopup = BI.inherit(BI.Pane, {
|
|
|
|
|
var o = this.options; |
|
|
|
|
items = BI.createItems(items, { |
|
|
|
|
type: "bi.single_select_icon_text_item", |
|
|
|
|
height: 24, |
|
|
|
|
height: 30, |
|
|
|
|
iconWrapperWidth: o.iconWrapperWidth, |
|
|
|
|
iconHeight: o.iconHeight, |
|
|
|
|
iconWidth: o.iconWidth |
|
|
|
@ -57043,7 +57049,7 @@ BI.shortcut("bi.small_text_value_check_combo", BI.SmallTextValueCheckCombo);BI.T
|
|
|
|
|
return BI.extend({ |
|
|
|
|
type: "bi.single_select_item", |
|
|
|
|
cls: "bi-list-item", |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}, item); |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
@ -57118,7 +57124,7 @@ BI.TextValueCombo = BI.inherit(BI.Widget, {
|
|
|
|
|
el: this.trigger, |
|
|
|
|
popup: { |
|
|
|
|
el: this.popup, |
|
|
|
|
maxHeight: 240 |
|
|
|
|
maxHeight: 300 |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
if(BI.isKey(o.value)) { |
|
|
|
@ -57207,7 +57213,7 @@ BI.SmallTextValueCombo = BI.inherit(BI.Widget, {
|
|
|
|
|
el: this.trigger, |
|
|
|
|
popup: { |
|
|
|
|
el: this.popup, |
|
|
|
|
maxHeight: 240 |
|
|
|
|
maxHeight: 300 |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
@ -57243,7 +57249,7 @@ BI.shortcut("bi.small_text_value_combo", BI.SmallTextValueCombo);BI.TextValueCom
|
|
|
|
|
items: BI.createItems(o.items, { |
|
|
|
|
type: "bi.single_select_item", |
|
|
|
|
textAlign: o.textAlign, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}), |
|
|
|
|
chooseType: o.chooseType, |
|
|
|
|
layouts: [{ |
|
|
|
@ -57272,7 +57278,7 @@ BI.shortcut("bi.small_text_value_combo", BI.SmallTextValueCombo);BI.TextValueCom
|
|
|
|
|
BI.TextValueComboPopup.superclass.populate.apply(this, arguments); |
|
|
|
|
items = BI.createItems(items, { |
|
|
|
|
type: "bi.single_select_item", |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
this.popup.populate(items); |
|
|
|
|
}, |
|
|
|
@ -57756,7 +57762,7 @@ BI.ShelterEditor = BI.inherit(BI.Widget, {
|
|
|
|
|
}); |
|
|
|
|
this._showHint(); |
|
|
|
|
self._checkText(); |
|
|
|
|
this.text.doRedMark(o.keyword); |
|
|
|
|
BI.isKey(o.keyword) && this.text.doRedMark(o.keyword); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
_checkText: function () { |
|
|
|
@ -57850,9 +57856,10 @@ BI.ShelterEditor = BI.inherit(BI.Widget, {
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
setValue: function (k) { |
|
|
|
|
var o = this.options; |
|
|
|
|
this.editor.setValue(k); |
|
|
|
|
this._checkText(); |
|
|
|
|
this.text.doRedMark(this.options.keyword); |
|
|
|
|
BI.isKey(o.keyword) && this.text.doRedMark(o.keyword); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
getValue: function () { |
|
|
|
@ -58040,7 +58047,7 @@ BI.SignEditor = BI.inherit(BI.Widget, {
|
|
|
|
|
} else { |
|
|
|
|
this.text.setValue(this.editor.getValue()); |
|
|
|
|
this.text.element.removeClass("bi-water-mark"); |
|
|
|
|
this.text.doRedMark(o.keyword); |
|
|
|
|
BI.isKey(o.keyword) && this.text.doRedMark(o.keyword); |
|
|
|
|
} |
|
|
|
|
}, this)); |
|
|
|
|
}, |
|
|
|
@ -62875,7 +62882,7 @@ BI.extend(BI.DynamicDatePane, {
|
|
|
|
|
BI.DateTimeCombo = BI.inherit(BI.Single, { |
|
|
|
|
constants: { |
|
|
|
|
popupHeight: 290, |
|
|
|
|
popupWidth: 270, |
|
|
|
|
popupWidth: 310, |
|
|
|
|
comboAdjustHeight: 1, |
|
|
|
|
border: 1 |
|
|
|
|
}, |
|
|
|
@ -63010,8 +63017,8 @@ BI.DateTimePopup = BI.inherit(BI.Widget, {
|
|
|
|
|
_defaultConfig: function () { |
|
|
|
|
return BI.extend(BI.DateTimePopup.superclass._defaultConfig.apply(this, arguments), { |
|
|
|
|
baseCls: "bi-date-time-popup", |
|
|
|
|
width: 268, |
|
|
|
|
height: 374 |
|
|
|
|
width: 310, |
|
|
|
|
height: 410 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -63646,7 +63653,7 @@ BI.shortcut("bi.down_list_group", BI.DownListGroup);BI.DownListItem = BI.inherit
|
|
|
|
|
return BI.extend(conf, { |
|
|
|
|
baseCls: "bi-down-list-item bi-list-item-active", |
|
|
|
|
cls: "", |
|
|
|
|
height: 24, |
|
|
|
|
height: 30, |
|
|
|
|
logic: { |
|
|
|
|
dynamic: true |
|
|
|
|
}, |
|
|
|
@ -63859,7 +63866,7 @@ BI.shortcut("bi.down_list_group_item", BI.DownListGroupItem);/**
|
|
|
|
|
BI.DownListPopup = BI.inherit(BI.Pane, { |
|
|
|
|
constants: { |
|
|
|
|
nextIcon: "pull-right-e-font", |
|
|
|
|
height: 24, |
|
|
|
|
height: 30, |
|
|
|
|
iconHeight: 12, |
|
|
|
|
iconWidth: 12, |
|
|
|
|
hgap: 0, |
|
|
|
@ -64973,8 +64980,8 @@ BI.DynamicDatePopup = BI.inherit(BI.Widget, {
|
|
|
|
|
|
|
|
|
|
props: { |
|
|
|
|
baseCls: "bi-dynamic-date-popup", |
|
|
|
|
width: 248, |
|
|
|
|
height: 344 |
|
|
|
|
width: 290, |
|
|
|
|
height: 380 |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
_init: function () { |
|
|
|
@ -65824,8 +65831,8 @@ BI.extend(BI.DynamicDateTimeCombo, {
|
|
|
|
|
|
|
|
|
|
props: { |
|
|
|
|
baseCls: "bi-dynamic-date-time-popup", |
|
|
|
|
width: 248, |
|
|
|
|
height: 385 |
|
|
|
|
width: 290, |
|
|
|
|
height: 421 |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
_init: function () { |
|
|
|
@ -67904,7 +67911,7 @@ BI.MonthPopup = BI.inherit(BI.Widget, {
|
|
|
|
|
whiteSpace: "nowrap", |
|
|
|
|
once: false, |
|
|
|
|
forceSelected: true, |
|
|
|
|
height: 23, |
|
|
|
|
height: 30, |
|
|
|
|
width: 38, |
|
|
|
|
value: td, |
|
|
|
|
text: td |
|
|
|
@ -67923,7 +67930,7 @@ BI.MonthPopup = BI.inherit(BI.Widget, {
|
|
|
|
|
columns: 2, |
|
|
|
|
rows: 6, |
|
|
|
|
columnSize: [1 / 2, 1 / 2], |
|
|
|
|
rowSize: 25 |
|
|
|
|
rowSize: 30 |
|
|
|
|
})), { |
|
|
|
|
type: "bi.center_adapt", |
|
|
|
|
vgap: 1, |
|
|
|
@ -68156,7 +68163,7 @@ BI.shortcut("bi.multi_layer_down_list_combo", BI.DownListCombo);/**
|
|
|
|
|
BI.MultiLayerDownListPopup = BI.inherit(BI.Pane, { |
|
|
|
|
constants: { |
|
|
|
|
nextIcon: "pull-right-e-font", |
|
|
|
|
height: 25, |
|
|
|
|
height: 30, |
|
|
|
|
iconHeight: 12, |
|
|
|
|
iconWidth: 12, |
|
|
|
|
hgap: 0, |
|
|
|
@ -69055,7 +69062,7 @@ BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
pId: "", |
|
|
|
|
readonly: true, |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -69096,7 +69103,7 @@ BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
items.push({ |
|
|
|
|
type: "bi.layout", |
|
|
|
|
cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", |
|
|
|
|
width: 12, |
|
|
|
|
width: 16, |
|
|
|
|
height: o.height |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
@ -69104,7 +69111,7 @@ BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
BI.createWidget({ |
|
|
|
|
type: "bi.td", |
|
|
|
|
element: this, |
|
|
|
|
columnSize: BI.makeArray(o.layer, 12), |
|
|
|
|
columnSize: BI.makeArray(o.layer, 15), |
|
|
|
|
items: [items] |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
@ -69158,7 +69165,7 @@ BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
pId: "", |
|
|
|
|
readonly: true, |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -69199,7 +69206,7 @@ BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
items.push({ |
|
|
|
|
type: "bi.layout", |
|
|
|
|
cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", |
|
|
|
|
width: 12, |
|
|
|
|
width: 16, |
|
|
|
|
height: o.height |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
@ -69207,7 +69214,7 @@ BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
BI.createWidget({ |
|
|
|
|
type: "bi.td", |
|
|
|
|
element: this, |
|
|
|
|
columnSize: BI.makeArray(o.layer, 12), |
|
|
|
|
columnSize: BI.makeArray(o.layer, 15), |
|
|
|
|
items: [items] |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
@ -69257,7 +69264,7 @@ BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
pId: "", |
|
|
|
|
readonly: true, |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -69298,7 +69305,7 @@ BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
items.push({ |
|
|
|
|
type: "bi.layout", |
|
|
|
|
cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", |
|
|
|
|
width: 12, |
|
|
|
|
width: 16, |
|
|
|
|
height: o.height |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
@ -69306,7 +69313,7 @@ BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
BI.createWidget({ |
|
|
|
|
type: "bi.td", |
|
|
|
|
element: this, |
|
|
|
|
columnSize: BI.makeArray(o.layer, 12), |
|
|
|
|
columnSize: BI.makeArray(o.layer, 15), |
|
|
|
|
items: [items] |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
@ -69356,7 +69363,7 @@ BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
pId: "", |
|
|
|
|
readonly: true, |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -69397,7 +69404,7 @@ BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
items.push({ |
|
|
|
|
type: "bi.layout", |
|
|
|
|
cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", |
|
|
|
|
width: 12, |
|
|
|
|
width: 16, |
|
|
|
|
height: o.height |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
@ -69405,7 +69412,7 @@ BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
BI.createWidget({ |
|
|
|
|
type: "bi.td", |
|
|
|
|
element: this, |
|
|
|
|
columnSize: BI.makeArray(o.layer, 12), |
|
|
|
|
columnSize: BI.makeArray(o.layer, 15), |
|
|
|
|
items: [items] |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
@ -70021,7 +70028,7 @@ BI.MultiLayerSingleTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -70043,7 +70050,7 @@ BI.MultiLayerSingleTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
items.push({ |
|
|
|
|
type: "bi.layout", |
|
|
|
|
cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", |
|
|
|
|
width: 12, |
|
|
|
|
width: 16, |
|
|
|
|
height: o.height |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
@ -70051,7 +70058,7 @@ BI.MultiLayerSingleTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
BI.createWidget({ |
|
|
|
|
type: "bi.td", |
|
|
|
|
element: this, |
|
|
|
|
columnSize: BI.makeArray(o.layer, 12), |
|
|
|
|
columnSize: BI.makeArray(o.layer, 15), |
|
|
|
|
items: [items] |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
@ -70124,7 +70131,7 @@ BI.MultiLayerSingleTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -70146,7 +70153,7 @@ BI.MultiLayerSingleTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
items.push({ |
|
|
|
|
type: "bi.layout", |
|
|
|
|
cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", |
|
|
|
|
width: 12, |
|
|
|
|
width: 16, |
|
|
|
|
height: o.height |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
@ -70154,7 +70161,7 @@ BI.MultiLayerSingleTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
BI.createWidget({ |
|
|
|
|
type: "bi.td", |
|
|
|
|
element: this, |
|
|
|
|
columnSize: BI.makeArray(o.layer, 12), |
|
|
|
|
columnSize: BI.makeArray(o.layer, 15), |
|
|
|
|
items: [items] |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
@ -70226,7 +70233,7 @@ BI.MultiLayerSingleTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -70248,7 +70255,7 @@ BI.MultiLayerSingleTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
items.push({ |
|
|
|
|
type: "bi.layout", |
|
|
|
|
cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", |
|
|
|
|
width: 12, |
|
|
|
|
width: 16, |
|
|
|
|
height: o.height |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
@ -70256,7 +70263,7 @@ BI.MultiLayerSingleTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
BI.createWidget({ |
|
|
|
|
type: "bi.td", |
|
|
|
|
element: this, |
|
|
|
|
columnSize: BI.makeArray(o.layer, 12), |
|
|
|
|
columnSize: BI.makeArray(o.layer, 15), |
|
|
|
|
items: [items] |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
@ -70326,7 +70333,7 @@ BI.MultiLayerSingleTreePlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -70348,7 +70355,7 @@ BI.MultiLayerSingleTreePlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
items.push({ |
|
|
|
|
type: "bi.layout", |
|
|
|
|
cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", |
|
|
|
|
width: 12, |
|
|
|
|
width: 16, |
|
|
|
|
height: o.height |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
@ -70429,7 +70436,7 @@ BI.MultiLayerSingleTreeFirstTreeLeafItem = BI.inherit(BI.BasicButton, {
|
|
|
|
|
layer: 0, |
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -70472,7 +70479,7 @@ BI.MultiLayerSingleTreeFirstTreeLeafItem = BI.inherit(BI.BasicButton, {
|
|
|
|
|
items.push({ |
|
|
|
|
type: "bi.layout", |
|
|
|
|
cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", |
|
|
|
|
width: 12, |
|
|
|
|
width: 16, |
|
|
|
|
height: o.height |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
@ -70480,7 +70487,7 @@ BI.MultiLayerSingleTreeFirstTreeLeafItem = BI.inherit(BI.BasicButton, {
|
|
|
|
|
BI.createWidget({ |
|
|
|
|
type: "bi.td", |
|
|
|
|
element: this, |
|
|
|
|
columnSize: BI.makeArray(o.layer, 12), |
|
|
|
|
columnSize: BI.makeArray(o.layer, 15), |
|
|
|
|
items: [items] |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
@ -70528,7 +70535,7 @@ BI.MultiLayerSingleTreeLastTreeLeafItem = BI.inherit(BI.BasicButton, {
|
|
|
|
|
layer: 0, |
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -70570,7 +70577,7 @@ BI.MultiLayerSingleTreeLastTreeLeafItem = BI.inherit(BI.BasicButton, {
|
|
|
|
|
items.push({ |
|
|
|
|
type: "bi.layout", |
|
|
|
|
cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", |
|
|
|
|
width: 12, |
|
|
|
|
width: 16, |
|
|
|
|
height: o.height |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
@ -70578,7 +70585,7 @@ BI.MultiLayerSingleTreeLastTreeLeafItem = BI.inherit(BI.BasicButton, {
|
|
|
|
|
BI.createWidget({ |
|
|
|
|
type: "bi.td", |
|
|
|
|
element: this, |
|
|
|
|
columnSize: BI.makeArray(o.layer, 12), |
|
|
|
|
columnSize: BI.makeArray(o.layer, 15), |
|
|
|
|
items: [items] |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
@ -70626,7 +70633,7 @@ BI.MultiLayerSingleTreeMidTreeLeafItem = BI.inherit(BI.BasicButton, {
|
|
|
|
|
layer: 0, |
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -70668,7 +70675,7 @@ BI.MultiLayerSingleTreeMidTreeLeafItem = BI.inherit(BI.BasicButton, {
|
|
|
|
|
items.push({ |
|
|
|
|
type: "bi.layout", |
|
|
|
|
cls: BI.contains(needBlankLayers, index) ? "" : "base-line-conn-background", |
|
|
|
|
width: 12, |
|
|
|
|
width: 16, |
|
|
|
|
height: o.height |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
@ -70676,7 +70683,7 @@ BI.MultiLayerSingleTreeMidTreeLeafItem = BI.inherit(BI.BasicButton, {
|
|
|
|
|
BI.createWidget({ |
|
|
|
|
type: "bi.td", |
|
|
|
|
element: this, |
|
|
|
|
columnSize: BI.makeArray(o.layer, 12), |
|
|
|
|
columnSize: BI.makeArray(o.layer, 15), |
|
|
|
|
items: [items] |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
@ -72387,7 +72394,7 @@ BI.MultiSelectLoader = BI.inherit(BI.Widget, {
|
|
|
|
|
type: "bi.multi_select_item", |
|
|
|
|
logic: this.options.logic, |
|
|
|
|
cls: "bi-list-item-active", |
|
|
|
|
height: 24, |
|
|
|
|
height: 30, |
|
|
|
|
selected: this.isAllSelected(), |
|
|
|
|
iconWrapperWidth: 36 |
|
|
|
|
}); |
|
|
|
@ -77889,7 +77896,7 @@ BI.QuarterPopup = BI.inherit(BI.Widget, {
|
|
|
|
|
whiteSpace: "nowrap", |
|
|
|
|
once: false, |
|
|
|
|
forceSelected: true, |
|
|
|
|
height: 25 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
@ -78785,7 +78792,7 @@ BI.SearchMultiSelectLoader = BI.inherit(BI.Widget, {
|
|
|
|
|
type: "bi.multi_select_item", |
|
|
|
|
logic: this.options.logic, |
|
|
|
|
cls: "bi-list-item-active", |
|
|
|
|
height: 24, |
|
|
|
|
height: 30, |
|
|
|
|
selected: this.isAllSelected(), |
|
|
|
|
iconWrapperWidth: 36 |
|
|
|
|
}); |
|
|
|
@ -79126,7 +79133,7 @@ BI.SelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
pId: "", |
|
|
|
|
readonly: true, |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -79211,7 +79218,7 @@ BI.SelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
pId: "", |
|
|
|
|
readonly: true, |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -79296,7 +79303,7 @@ BI.SelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
pId: "", |
|
|
|
|
readonly: true, |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -79381,7 +79388,7 @@ BI.SelectTreePlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
pId: "", |
|
|
|
|
readonly: true, |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -80973,7 +80980,7 @@ BI.SingleSelectLoader = BI.inherit(BI.Widget, {
|
|
|
|
|
type: this.options.allowNoSelect ? "bi.single_select_item" : "bi.single_select_combo_item", |
|
|
|
|
logic: this.options.logic, |
|
|
|
|
cls: "bi-list-item-active", |
|
|
|
|
height: 24, |
|
|
|
|
height: 30, |
|
|
|
|
selected: false |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
@ -83401,7 +83408,7 @@ BI.shortcut("bi.single_tree_trigger", BI.SingleTreeTrigger);!(function () {
|
|
|
|
|
|
|
|
|
|
_const: { |
|
|
|
|
COMPARE_FORMAT: "%H:%M:%S", |
|
|
|
|
COMPLETE_COMPARE_FORMAT: "%Y-%M-%d %H:%M:%S", |
|
|
|
|
COMPLETE_COMPARE_FORMAT: "%Y-%M-%d %H:%M:%S %P", |
|
|
|
|
FORMAT_ARRAY: [ |
|
|
|
|
"%H:%M:%S", // HH:mm:ss
|
|
|
|
|
"%I:%M:%S", // hh:mm:ss
|
|
|
|
@ -83409,6 +83416,8 @@ BI.shortcut("bi.single_tree_trigger", BI.SingleTreeTrigger);!(function () {
|
|
|
|
|
"%k:%M:%S", // H:mm:ss
|
|
|
|
|
"%l:%M:%S %p", // h:mm:ss a
|
|
|
|
|
"%l:%M:%S %P", // h:mm:ss a
|
|
|
|
|
"%H:%M:%S %p", // HH:mm:ss a
|
|
|
|
|
"%H:%M:%S %P", // HH:mm:ss a
|
|
|
|
|
"%l:%M", // h:mm
|
|
|
|
|
"%k:%M", // H:mm
|
|
|
|
|
"%I:%M", // hh:mm
|
|
|
|
@ -84442,7 +84451,7 @@ BI.DynamicYearPopup = BI.inherit(BI.Widget, {
|
|
|
|
|
min: "1900-01-01", // 最小日期
|
|
|
|
|
max: "2099-12-31", // 最大日期,
|
|
|
|
|
width: 180, |
|
|
|
|
height: 240 |
|
|
|
|
height: 276 |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
render: function () { |
|
|
|
@ -84899,7 +84908,7 @@ BI.shortcut("bi.dynamic_year_month_card", BI.DynamicYearMonthCard);BI.StaticYear
|
|
|
|
|
whiteSpace: "nowrap", |
|
|
|
|
once: false, |
|
|
|
|
forceSelected: true, |
|
|
|
|
height: 23, |
|
|
|
|
height: 30, |
|
|
|
|
width: 38, |
|
|
|
|
value: td, |
|
|
|
|
text: td |
|
|
|
@ -84943,7 +84952,7 @@ BI.shortcut("bi.dynamic_year_month_card", BI.DynamicYearMonthCard);BI.StaticYear
|
|
|
|
|
columns: 2, |
|
|
|
|
rows: 6, |
|
|
|
|
columnSize: [1 / 2, 1 / 2], |
|
|
|
|
rowSize: 25 |
|
|
|
|
rowSize: 30 |
|
|
|
|
})), { |
|
|
|
|
type: "bi.center_adapt", |
|
|
|
|
vgap: 1, |
|
|
|
@ -85197,7 +85206,7 @@ BI.DynamicYearMonthPopup = BI.inherit(BI.Widget, {
|
|
|
|
|
min: "1900-01-01", // 最小日期
|
|
|
|
|
max: "2099-12-31", // 最大日期,
|
|
|
|
|
width: 180, |
|
|
|
|
height: 240 |
|
|
|
|
height: 270 |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
render: function () { |
|
|
|
@ -85939,7 +85948,7 @@ BI.shortcut("bi.dynamic_year_quarter_card", BI.DynamicYearQuarterCard);BI.Static
|
|
|
|
|
whiteSpace: "nowrap", |
|
|
|
|
once: false, |
|
|
|
|
forceSelected: true, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
@ -86197,7 +86206,7 @@ BI.extend(BI.DynamicYearQuarterCombo, {
|
|
|
|
|
min: "1900-01-01", // 最小日期
|
|
|
|
|
max: "2099-12-31", // 最大日期,
|
|
|
|
|
width: 180, |
|
|
|
|
height: 240 |
|
|
|
|
height: 260 |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
render: function () { |
|
|
|
|