вызывается при ошибках сохранения данных
id | string | ID обновленного элемента |
status | string | тип операции |
response | object | ответ с сервера в JSON-объекте |
details | object | подробности об ошибке |
dp.attachEvent("onAfterSaveError", function(id, status, response, details){
//...
});
Возможная структура объекта response:
{
id:"id of the item",
status:"update status",
newid:"new id after operation"
}
Возможная структура объекта details:
{
text:"full text of server side response",
data:"webix ajax data related to the error",
loader: xhr // xmlHttpRequest object related to the error
}