|
|
|
@ -27898,7 +27898,7 @@ BI.shortcut("bi.tree_view", BI.TreeView);/**
|
|
|
|
|
*/ |
|
|
|
|
BI.AsyncTree = BI.inherit(BI.TreeView, { |
|
|
|
|
_defaultConfig: function () { |
|
|
|
|
return BI.extend(BI.AsyncTree.superclass._defaultConfig.apply(this, arguments), {}) |
|
|
|
|
return BI.extend(BI.AsyncTree.superclass._defaultConfig.apply(this, arguments), {}); |
|
|
|
|
}, |
|
|
|
|
_init: function () { |
|
|
|
|
BI.AsyncTree.superclass._init.apply(this, arguments); |
|
|
|
@ -27957,7 +27957,7 @@ BI.AsyncTree = BI.inherit(BI.TreeView, {
|
|
|
|
|
ch.halfCheck = false; |
|
|
|
|
track(ch.children); |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
track(treeNode.children); |
|
|
|
@ -27966,7 +27966,7 @@ BI.AsyncTree = BI.inherit(BI.TreeView, {
|
|
|
|
|
var nodes = treeObj.getSelectedNodes(); |
|
|
|
|
BI.each(nodes, function (index, node) { |
|
|
|
|
node.halfCheck = false; |
|
|
|
|
}) |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -28045,7 +28045,9 @@ BI.AsyncTree = BI.inherit(BI.TreeView, {
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (!treeNode.children) { |
|
|
|
|
o.itemsCreator(op, complete) |
|
|
|
|
setTimeout(function () { |
|
|
|
|
o.itemsCreator(op, complete); |
|
|
|
|
}, 17); |
|
|
|
|
} |
|
|
|
|
}, |
|
|
|
|
|
|
|
|
@ -28063,7 +28065,7 @@ BI.AsyncTree = BI.inherit(BI.TreeView, {
|
|
|
|
|
} else { |
|
|
|
|
track(parent.concat([n]), node[n], compare[n]); |
|
|
|
|
} |
|
|
|
|
}) |
|
|
|
|
}); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return map; |
|
|
|
|