Hello,
I´m following the next example of "How to process the node operation in tree view using context menu" here: https://ej2.syncfusion.com/angular/documentation/treeview/how-to/#how-to-process-the-node-operation-in-tree-view-using-context-menu .
I probe by myself the same code changing item like this to add a nested item:
let item: { [key: string]: Object } = { id: nodeId, name: "New Folder", child: {
id: 5, name: "Folder"} };
and doesn´t work, there is any solution?
Thanx.