Check documentation for the latest version of dhtmlxSuite onTextChange DHTMLX Docs

onTextChange

fires when the item's text is changed

void onTextChange(string|number id,string text);
idstring|numberthe item's id
textstringthe new item's text

Example

myTreeView.attachEvent("onTextChange", function(id, text){
    // your code here
});

Back to top