proxy.debug¶
webix.proxy.
debug
¶webix.proxy.debug helper.
Please look into the linked official documentation.
References¶
- helpers
delay()
.
External references¶
Code¶
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | webix.proxy.debug = {
$proxy:true,
load:function(){},
save:function(v,u,d,c){
webix.delay(function(){
window.console.log("[DP] "+u.id+" -> "+u.operation, u.data);
var data = {
id:u.data.id,
newid:u.data.id,
status:u.data.operation
};
d.processResult(data, data);
});
}
};
|