|
|
|
@ -333,11 +333,12 @@ BI.TreeView = BI.inherit(BI.Pane, {
|
|
|
|
|
BI.each(ns, function (i, n) { |
|
|
|
|
n.title = n.title || n.text || n.value; |
|
|
|
|
n.isParent = n.isParent || n.parent; |
|
|
|
|
n.value = n.value || n.text; |
|
|
|
|
// 处理标红
|
|
|
|
|
if (BI.isKey(o.paras.keyword)) { |
|
|
|
|
n.text = BI.$("<div>").__textKeywordMarked__(n.text, o.paras.keyword, n.py).html(); |
|
|
|
|
n.text = BI.$("<div>").__textKeywordMarked__(BI.Text.formatText(n.text + ""), o.paras.keyword, n.py).html(); |
|
|
|
|
} else { |
|
|
|
|
n.text = BI.htmlEncode(n.text + ""); |
|
|
|
|
n.text = BI.htmlEncode(BI.Text.formatText(n.text + "")); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
return nodes; |
|
|
|
|