Check documentation for the latest version of dhtmlxSuite onAfterSave DHTMLX Docs

onAfterSave

fires after data has been saved in DB

void onAfterSave(string|number id,object xml);
idstring|numberform id
xmlobjectthe loader object from the server side response

Example

myForm.attachEvent("onAfterSave", function (id, xml){
   //your code here
});

Back to top