|
document.getElementById("add").onclick = () => {
let obj = {
id: "89",
name: "New Node",
child: null
};
// Add the node to the TreeView component.
treeObj.addNodes([obj], "01-02");
};
document.getElementById("remove").onclick = () => {
// Remove the node to the TreeView component.
treeObj.removeNodes(["01-02-02"]);
};
|