fires the moment data has gone to server
details | object | object with data details (see below) |
//dp is a dataprocessor object
dp.attachEvent("onAfterDataSend", function(details){
//code
});
The event parameter, details, consists of:
and looks like:
{
id:5,
operation:"update",
data:{
id:5,
title:"The Godfather",
rating:"9.2"
}
}