0

我想以编程方式创建一个新节点。然后我想在另一个节点之前添加它作为兄弟节点。

此代码不起作用:

var node = $("#TreeDiv").dynatree("getActiveNode");
var nextSiblingNode = node.getNextSibling();
var childNode = node.addChild({ title: response.title, key: response.unitId }, nextSiblingNode);

我错了什么?

更新:

那是我用上面的代码得到的例外:

Unhandled exception at line 4, column 20662 in http://localhost:1726/Scripts/jquery.dynatree.min.js

0x800a139e - runtime error in JavaScript: <beforeNode> must be a child of <this>
4

1 回答 1

1

在作为孩子创建节点后,我不得不移动节点并且它工作......当然代码仍然需要一些空检查;-)

var newNode = { title: response.title, key: response.unitId };
var activeNode = $("#TreeDiv").dynatree("getActiveNode");
var nextSiblingNode = activeNode.getNextSibling();
if (nextSiblingNode != null) {
    newNode = activeNode.addChild(newNode);
    newNode.move(nextSiblingNode, 'before');
}
else
{                      
    var parentNode = activeNode.getParent();
    newNode = parentNode.addChild(newNode);
}
newNode.activate(true);
newNode.focus(true);
于 2012-11-26T21:45:06.740 回答