Browse Source

Pull request #2618: 无JIRA任务 feature: ztree的node克隆一下使用

Merge in VISUAL/fineui from ~GUY/fineui:master to master

* commit '1c6de465d49a65bbf32236cf8f7338cd72652136':
  feature: ztree的node克隆一下使用
es6
guy 2 years ago
parent
commit
15d75537f3
  1. 23
      src/case/ztree/0.treeview.js

23
src/case/ztree/0.treeview.js

@ -347,33 +347,32 @@ BI.TreeView = BI.inherit(BI.Pane, {
_dealWidthNodes: function (nodes) {
var self = this, o = this.options;
var ns = BI.Tree.arrayFormat(nodes);
BI.each(ns, function (i, n) {
n.isParent = n.isParent || n.parent;
return BI.map(ns, function (i, n) {
var newNode = BI.extend({}, n);
newNode.isParent = newNode.isParent || newNode.parent;
// n.value = BI.isUndefined(n.value) ? n.text : n.value;
// n.text = BI.isUndefined(n.text) ? n.value : n.text;
// if (n.text === null) {
// n.text = "";
// }
if (BI.isNull(n.title)) {
n.title = n.text;
if (BI.isNull(newNode.title)) {
newNode.title = newNode.text;
}
if (n.disabled) {
n.title = n.warningTitle || n.title;
if (newNode.disabled) {
newNode.title = newNode.warningTitle || newNode.title;
}
var text = BI.createWidget(BI.extend({
cls: "tree-node-text",
css: {
display: "inline"
},
tagName: "span",
whiteSpace: "nowrap",
root: true,
keyword: o.paras.keyword
}, n, {
}, newNode, {
type: "bi.text"
}));
var fragment = BI.Widget._renderEngine.createElement("<div>");
fragment.append(text.element[0]);
n.text = fragment.html();
newNode.text = fragment.html();
// // 处理标红
// if (BI.isNotNull(n.text)) {
// if (BI.isKey(o.paras.keyword)) {
@ -382,8 +381,8 @@ BI.TreeView = BI.inherit(BI.Pane, {
// n.text = BI.htmlEncode(BI.Text.formatText(n.text + ""));
// }
// }
return newNode;
});
return nodes;
},
_loadMore: function () {

Loading…
Cancel
Save