Check documentation for the latest version of dhtmlxSuite onAfterEditStop DHTMLX Docs

onAfterEditStop

fires when the editor is closed

void onAfterEditStop(string|number id);
idstring|numberid of the item

Example

myList.attachEvent("onAfterEditStop", function (id){
    // your code here
});

Back to top