Check documentation for the latest version of dhtmlxSuite onEditCancel DHTMLX Docs

onEditCancel

event occurs after cancelling edit by Escape key or other means

void onEditCancel(string id,string value);
idstringid of item
valuestringitem's text

Example

tree.attachEvent("onEditCancel", function(id, value){
 
})

Back to top