fires after serverside responce has been received and processed
response | object | json object with details of server side response |
id | id | id of related item |
details | object | object which holds details of data saving |
dp.attachEvent("onAfterSave", function(response, id, details){
//code
});
1 . The response parameter contains the following info about saved data item:
2 . The id parameter contains old (clientside) item ID. It will differ from the serverside one in case of insertion.
3 . The details parameter contains data saving details, namely:
In case of an error during saving, the onAfterSaveError fires instead.