Hey. I use the TreeView component
<ejs-treeview #tree id="tree" [fields]='field' [allowEditing]='allowEditing' >ejs-treeview>
public field:Object ={ dataSource: this.data, id: 'uuid', text: 'name', child: 'children' };
Im adding a node with this function:
public addNode(event) {
let item: { [key: string]: Object } = {id:this.count, name: "Neue Kategorie"};
this.tree.addNodes([item], this.tree.selectedNodes[0]);
++this.count;
}
If I now try to change the name of the node, I get "undefined" in "oldText", when I click on the node.

After changing the name I try to get the current data with the function getTreeData(). There I get only an object with the initial data from addNode() 
If I fill the variable field only with the DataSource, adding, changing and data retrieval works using getTreeData()
Thanks for considering my request