|
|
|
@ -17421,7 +17421,7 @@ BI.shortcut('bi.all_value_chooser_pane', BI.AllValueChooserPane);BI.AbstractTree
|
|
|
|
|
function expandSelectedValue(selectedValues, parents, notSelectedValue) { |
|
|
|
|
var next = selectedValues; |
|
|
|
|
//去掉点击的节点之后的结果集
|
|
|
|
|
BI.each(parents, function (i, v) { |
|
|
|
|
BI.some(parents, function (i, v) { |
|
|
|
|
var t = next[v]; |
|
|
|
|
if (t == null) { |
|
|
|
|
if (BI.isEmpty(next)) { |
|
|
|
@ -17435,8 +17435,9 @@ BI.shortcut('bi.all_value_chooser_pane', BI.AllValueChooserPane);BI.AbstractTree
|
|
|
|
|
}); |
|
|
|
|
next = next[v]; |
|
|
|
|
} else { |
|
|
|
|
next = {}; |
|
|
|
|
next[v] = {}; |
|
|
|
|
return true; |
|
|
|
|
// next = {};
|
|
|
|
|
// next[v] = {};
|
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
next = t; |
|
|
|
|