|
|
|
@ -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 this._getJoinValue(); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
// 生成树方法
|
|
|
|
|
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(); |
|
|
|
@ -40401,9 +40409,7 @@ BI.PartTree = BI.inherit(BI.AsyncTree, {
|
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
getValue: function () { |
|
|
|
|
var o = this.options; |
|
|
|
|
var result = BI.PartTree.superclass.getValue.apply(this, arguments); |
|
|
|
|
return result; |
|
|
|
|
return BI.deepClone(this.options.paras.selectedValues || {}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
// 生成树方法
|
|
|
|
@ -41639,14 +41645,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 +42871,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 +45384,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 +52361,7 @@ BI.ArrowNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -52410,7 +52414,7 @@ BI.ArrowNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
BI.ArrowNode.superclass.doClick.apply(this, arguments); |
|
|
|
|
this.checkbox.setSelected(this.isOpened()); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
setText: function (text) { |
|
|
|
|
BI.ArrowNode.superclass.setText.apply(this, arguments); |
|
|
|
|
this.text.setText(text); |
|
|
|
@ -52439,7 +52443,7 @@ BI.FirstPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -52522,7 +52526,7 @@ BI.IconArrowNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
open: false, |
|
|
|
|
height: 24, |
|
|
|
|
height: 30, |
|
|
|
|
iconHeight: 12, |
|
|
|
|
iconWidth: 12, |
|
|
|
|
iconCls: "" |
|
|
|
@ -52618,7 +52622,7 @@ BI.LastPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -52699,7 +52703,7 @@ BI.MidPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -52772,7 +52776,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 +52872,7 @@ BI.PlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -52989,7 +52993,7 @@ BI.FirstTreeLeafItem = BI.inherit(BI.BasicButton, {
|
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
layer: 0, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -53018,19 +53022,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 +53089,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 +53184,7 @@ BI.LastTreeLeafItem = BI.inherit(BI.BasicButton, {
|
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
layer: 0, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -53209,19 +53213,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 +53288,7 @@ BI.MidTreeLeafItem = BI.inherit(BI.BasicButton, {
|
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
layer: 0, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -53313,19 +53317,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 +53386,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 +53486,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 +53708,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 +53725,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 +53874,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 +53890,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 +54004,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 +54027,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 +54050,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 +54073,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 +56199,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 +56227,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 +56402,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 +56461,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 +56500,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 +57047,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 +57122,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 +57211,7 @@ BI.SmallTextValueCombo = BI.inherit(BI.Widget, {
|
|
|
|
|
el: this.trigger, |
|
|
|
|
popup: { |
|
|
|
|
el: this.popup, |
|
|
|
|
maxHeight: 240 |
|
|
|
|
maxHeight: 300 |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
@ -57243,7 +57247,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 +57276,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 +57760,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 +57854,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 +58045,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 +62880,7 @@ BI.extend(BI.DynamicDatePane, {
|
|
|
|
|
BI.DateTimeCombo = BI.inherit(BI.Single, { |
|
|
|
|
constants: { |
|
|
|
|
popupHeight: 290, |
|
|
|
|
popupWidth: 270, |
|
|
|
|
popupWidth: 310, |
|
|
|
|
comboAdjustHeight: 1, |
|
|
|
|
border: 1 |
|
|
|
|
}, |
|
|
|
@ -63010,8 +63015,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 +63651,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 +63864,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 +64978,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 +65829,8 @@ BI.extend(BI.DynamicDateTimeCombo, {
|
|
|
|
|
|
|
|
|
|
props: { |
|
|
|
|
baseCls: "bi-dynamic-date-time-popup", |
|
|
|
|
width: 248, |
|
|
|
|
height: 385 |
|
|
|
|
width: 290, |
|
|
|
|
height: 421 |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
_init: function () { |
|
|
|
@ -67904,7 +67909,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 +67928,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 +68161,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 +69060,7 @@ BI.MultiLayerSelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
pId: "", |
|
|
|
|
readonly: true, |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -69096,7 +69101,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 +69109,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 +69163,7 @@ BI.MultiLayerSelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
pId: "", |
|
|
|
|
readonly: true, |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -69199,7 +69204,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 +69212,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 +69262,7 @@ BI.MultiLayerSelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
pId: "", |
|
|
|
|
readonly: true, |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -69298,7 +69303,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 +69311,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 +69361,7 @@ BI.MultiLayerSelectTreePlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
pId: "", |
|
|
|
|
readonly: true, |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -69397,7 +69402,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 +69410,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 +70026,7 @@ BI.MultiLayerSingleTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -70043,7 +70048,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 +70056,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 +70129,7 @@ BI.MultiLayerSingleTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -70146,7 +70151,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 +70159,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 +70231,7 @@ BI.MultiLayerSingleTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -70248,7 +70253,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 +70261,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 +70331,7 @@ BI.MultiLayerSingleTreePlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -70348,7 +70353,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 +70434,7 @@ BI.MultiLayerSingleTreeFirstTreeLeafItem = BI.inherit(BI.BasicButton, {
|
|
|
|
|
layer: 0, |
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -70472,7 +70477,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 +70485,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 +70533,7 @@ BI.MultiLayerSingleTreeLastTreeLeafItem = BI.inherit(BI.BasicButton, {
|
|
|
|
|
layer: 0, |
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -70570,7 +70575,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 +70583,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 +70631,7 @@ BI.MultiLayerSingleTreeMidTreeLeafItem = BI.inherit(BI.BasicButton, {
|
|
|
|
|
layer: 0, |
|
|
|
|
id: "", |
|
|
|
|
pId: "", |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -70668,7 +70673,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 +70681,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 +72392,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 +77894,7 @@ BI.QuarterPopup = BI.inherit(BI.Widget, {
|
|
|
|
|
whiteSpace: "nowrap", |
|
|
|
|
once: false, |
|
|
|
|
forceSelected: true, |
|
|
|
|
height: 25 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
|
|
|
|
@ -78785,7 +78790,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 +79131,7 @@ BI.SelectTreeFirstPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
pId: "", |
|
|
|
|
readonly: true, |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -79211,7 +79216,7 @@ BI.SelectTreeLastPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
pId: "", |
|
|
|
|
readonly: true, |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -79296,7 +79301,7 @@ BI.SelectTreeMidPlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
pId: "", |
|
|
|
|
readonly: true, |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -79381,7 +79386,7 @@ BI.SelectTreePlusGroupNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
pId: "", |
|
|
|
|
readonly: true, |
|
|
|
|
open: false, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
@ -80973,7 +80978,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 +83406,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 +83414,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 +84449,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 +84906,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 +84950,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 +85204,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 +85946,7 @@ BI.shortcut("bi.dynamic_year_quarter_card", BI.DynamicYearQuarterCard);BI.Static
|
|
|
|
|
whiteSpace: "nowrap", |
|
|
|
|
once: false, |
|
|
|
|
forceSelected: true, |
|
|
|
|
height: 24 |
|
|
|
|
height: 30 |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
@ -86197,7 +86204,7 @@ BI.extend(BI.DynamicYearQuarterCombo, {
|
|
|
|
|
min: "1900-01-01", // 最小日期
|
|
|
|
|
max: "2099-12-31", // 最大日期,
|
|
|
|
|
width: 180, |
|
|
|
|
height: 240 |
|
|
|
|
height: 260 |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
render: function () { |
|
|
|
|