|
|
|
@ -52480,7 +52480,7 @@ BI.ArrowNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
|
|
|
|
|
var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); |
|
|
|
|
var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, { |
|
|
|
|
width: 24, |
|
|
|
|
width: 16, |
|
|
|
|
el: this.checkbox |
|
|
|
|
}, this.text); |
|
|
|
|
BI.createWidget(BI.extend({ |
|
|
|
@ -52659,16 +52659,17 @@ BI.IconArrowNode = BI.inherit(BI.NodeButton, {
|
|
|
|
|
}); |
|
|
|
|
var type = BI.LogicFactory.createLogicTypeByDirection(BI.Direction.Left); |
|
|
|
|
var items = BI.LogicFactory.createLogicItemsByDirection(BI.Direction.Left, { |
|
|
|
|
width: 24, |
|
|
|
|
width: 16, |
|
|
|
|
el: this.checkbox |
|
|
|
|
}, { |
|
|
|
|
width: 24, |
|
|
|
|
width: 16, |
|
|
|
|
el: icon |
|
|
|
|
}, this.text); |
|
|
|
|
BI.createWidget(BI.extend({ |
|
|
|
|
element: this |
|
|
|
|
}, BI.LogicFactory.createLogic(type, BI.extend(o.logic, { |
|
|
|
|
items: items |
|
|
|
|
items: items, |
|
|
|
|
rgap: 5 |
|
|
|
|
})))); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
@ -52897,7 +52898,7 @@ BI.shortcut("bi.mid_plus_group_node", BI.MidPlusGroupNode);BI.MultiLayerIconArro
|
|
|
|
|
BI.count(0, o.layer, function () { |
|
|
|
|
items.push({ |
|
|
|
|
type: "bi.layout", |
|
|
|
|
width: 24, |
|
|
|
|
width: 15, |
|
|
|
|
height: o.height |
|
|
|
|
}); |
|
|
|
|
}); |
|
|
|
@ -52905,7 +52906,7 @@ BI.shortcut("bi.mid_plus_group_node", BI.MidPlusGroupNode);BI.MultiLayerIconArro
|
|
|
|
|
BI.createWidget({ |
|
|
|
|
type: "bi.td", |
|
|
|
|
element: this, |
|
|
|
|
columnSize: BI.makeArray(o.layer, 24), |
|
|
|
|
columnSize: BI.makeArray(o.layer, 15), |
|
|
|
|
items: [items] |
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
@ -80092,6 +80093,10 @@ BI.SelectTreeExpander = BI.inherit(BI.Widget, {
|
|
|
|
|
}); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
getAllLeaves: function () { |
|
|
|
|
return this.expander.getAllLeaves(); |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
|
setValue: function (v) { |
|
|
|
|
if (BI.contains(v, this.trigger.getValue())) { |
|
|
|
|
this.trigger.setSelected(true); |
|
|
|
|