asssigns handler for data saving actions
start | function | handler will be called for data saving start |
end | function | handler will be called for data saving end |
error | function | handler will be called for data saving error |
webix.dp("myview").attachProgress(function(){
webix.message("Saving...");
}, function(){
webix.message("Saved!");
}, function(response){
webix.message("Error!");
});
API is experimental and can be removed in next versions
Back to top