fires for data saving errors
id | id | id of updated item |
status | object | update status |
response | object | server side response parsed as json object |
details | object | error details |
dp.attachEvent("onBeforeSaveError", function(id){
//...
});
Structure of status
{
id:"id of item",
status:"update status",
newid:"new id after operation"
}
Structure of details
{
text:"full text of server side response",
data:"webix ajax data related to the error",
loader:"xmlHttpRequest object related to the error"
}
Back to top