fires after successful data insertion
response | object | the JSON object with details of the server side response |
id | id | the old ID of the related item |
details | object | the object which holds the state of data saving |
dp.attachEvent("onAfterInsert", function(response, id, object){
//... some code here ...
});
1 . The response parameter is a server response that can contain the new item id, status, newid with the serverside ID parameters and other properties, e.g.:
2 . The id parameter is the old client-side item ID. It will differ from the serverside ID, as a rule.
3 . The details parameter contains data saving details, e.g.:
Will not fire for "error" or "invalid" responses.
//for such response
{ id:"123", status:"custom" }
//the onAfterCustom event will be called
Back to top